Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 25 of 65) sorted by relevance

123

/linux-2.4.37.9/arch/mips/jazz/
Dint-handler.S60 ll_sw0: li s1,~IE_SW0
62 and t0,s1
66 ll_sw1: li s1,~IE_SW1
68 and t0,s1
72 ll_local_dma: li s1,~IE_IRQ0
104 ll_isa_nmi: li s1,~IE_IRQ3
119 li s1,~IE_IRQ4
148 and t2,s1
150 nor s1,zero,s1
157 or t2,s1
[all …]
/linux-2.4.37.9/arch/ia64/lib/
Didiv64.S27 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b
28 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b
32 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b
49 frcpa.s1 f11, p6 = f8, f9 // y0 = frcpa(b)
51 (p6) fmpy.s1 f7 = f8, f11 // q0 = a*y0
52 (p6) fnma.s1 f6 = f9, f11, f1 // e0 = -b*y0 + 1
54 (p6) fma.s1 f10 = f7, f6, f7 // q1 = q0*e0 + q0
55 (p6) fmpy.s1 f7 = f6, f6 // e1 = e0*e0
60 (p6) fma.s1 f10 = f10, f7, f10 // q2 = q1*e1 + q1
61 (p6) fma.s1 f6 = f11, f6, f11 // y1 = y0*e0 + y0
[all …]
Didiv32.S28 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b
29 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b
34 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b
59 frcpa.s1 f6, p6 = f8, f9 // y0 = frcpa(b)
61 (p6) fmpy.s1 f8 = f8, f6 // q0 = a*y0
62 (p6) fnma.s1 f6 = f9, f6, f1 // e0 = -b*y0 + 1
67 (p6) fma.s1 f8 = f6, f8, f8 // q1 = e0*q0 + q0
68 (p6) fma.s1 f6 = f6, f6, f7 // e1 = e0*e0 + 2^-34
73 (p6) fma.s1 f6 = f6, f8, f8 // q2 = e1*q1 + q1
Dxor.S40 .rotr s1[6+1], s2[6+1], d[2]
43 (p[0]) ld8.nta s1[0] = [r16], 8
45 (p[6]) xor d[0] = s1[6], s2[6]
78 .rotr s1[6+1], s2[6+1], s3[6+1], d[2]
81 (p[0]) ld8.nta s1[0] = [r16], 8
83 (p[6]) xor d[0] = s1[6], s2[6]
119 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], d[2]
122 (p[0]) ld8.nta s1[0] = [r16], 8
124 (p[6]) xor d[0] = s1[6], s2[6]
163 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], s5[6+1], d[2]
[all …]
/linux-2.4.37.9/drivers/char/rio/
Dphb.h145 #define dest_unit u1.s1.unit
146 #define dest_port u1.s1.port
149 #define tx_start u3.s1.tx_start_ptr_ptr
150 #define tx_add u3.s1.tx_add_ptr_ptr
151 #define tx_end u3.s1.tx_end_ptr_ptr
152 #define tx_remove u3.s1.tx_remove_ptr_ptr
153 #define rx_start u4.s1.rx_start_ptr_ptr
154 #define rx_add u4.s1.rx_add_ptr_ptr
155 #define rx_end u4.s1.rx_end_ptr_ptr
156 #define rx_remove u4.s1.rx_remove_ptr_ptr
[all …]
Driocmd.c941 RIOStrCmp(s1, s2) in RIOStrCmp() argument
942 register char *s1; in RIOStrCmp()
945 while ( *s1 && *s2 && *s1==*s2 )
946 s1++, s2++;
947 return *s1-*s2;
954 RIOStrnCmp(s1, s2, n) in RIOStrnCmp() argument
955 register char *s1; in RIOStrnCmp()
959 while ( n && *s1 && *s2 && *s1==*s2 )
960 n--, s1++, s2++;
961 return n ? *s1!=*s2 : 0;
/linux-2.4.37.9/drivers/char/
Dscan_keyb.c29 unsigned char *s0, *s1; member
77 kbd->s0, kbd->s1, kbd->length); in scan_kbd()
79 memcpy(kbd->s0, kbd->s1, kbd->length); in scan_kbd()
82 if(!kbd->scan(kbd->s1)) in scan_kbd()
84 kbd->s1, kbd->s0, kbd->length); in scan_kbd()
86 memcpy(kbd->s1, kbd->s0, kbd->length); in scan_kbd()
117 kbd->s1 = kmalloc(length, GFP_KERNEL); in register_scan_keyboard()
118 if (kbd->s1 == NULL) in register_scan_keyboard()
122 memset(kbd->s1, -1, kbd->length); in register_scan_keyboard()
/linux-2.4.37.9/net/sctp/
Dadler32.c86 __u32 s1 = adler & 0xffff; in update_adler32() local
93 s1 = (s1 + *buf); in update_adler32()
101 if (s1 >= BASE) in update_adler32()
102 s1 -= BASE; in update_adler32()
106 s2 = (s2 + s1); in update_adler32()
124 return (s2 << 16) + s1; in update_adler32()
/linux-2.4.37.9/include/asm-i386/
Dio.h333 #define __OUT2(s,s1,s2) \ argument
334 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
367 #define __OUT(s,s1,x) \ argument
368 __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
369 __OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));}
372 #define __OUT(s,s1,x) \ argument
373 __OUT1(s##_local,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
374 __OUT1(s##_p_local,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));} \
382 #define __IN2(s,s1,s2) \ argument
383 __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
[all …]
/linux-2.4.37.9/include/linux/
Dzutil.h77 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
102 unsigned long s1 = adler & 0xffff; in zlib_adler32() local
117 s1 += *buf++; in zlib_adler32()
118 s2 += s1; in zlib_adler32()
120 s1 %= BASE; in zlib_adler32()
123 return (s2 << 16) | s1; in zlib_adler32()
Delevator.h62 #define IN_ORDER(s1,s2) \ argument
63 ((((s1)->rq_dev == (s2)->rq_dev && \
64 (s1)->sector < (s2)->sector)) || \
65 (s1)->rq_dev < (s2)->rq_dev)
Dfs.h1634 static inline void double_down(struct semaphore *s1, struct semaphore *s2) in double_down() argument
1636 if (s1 != s2) { in double_down()
1637 if ((unsigned long) s1 < (unsigned long) s2) { in double_down()
1639 s2 = s1; s1 = tmp; in double_down()
1641 down(s1); in double_down()
1655 static inline void triple_down(struct semaphore *s1, in triple_down() argument
1659 if (s1 != s2) { in triple_down()
1660 if ((unsigned long) s1 < (unsigned long) s2) { in triple_down()
1661 if ((unsigned long) s1 < (unsigned long) s3) { in triple_down()
1663 s3 = s1; s1 = tmp; in triple_down()
[all …]
/linux-2.4.37.9/include/asm-x86_64/
Dio.h57 #define __OUT2(s,s1,s2) \ argument
58 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
60 #define __OUT(s,s1,x) \ argument
61 __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
62 __OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));} \
67 #define __IN2(s,s1,s2) \ argument
68 __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
70 #define __IN(s,s1,i...) \ argument
71 __IN1(s) __IN2(s,s1,"w") : "=a" (_v) : "Nd" (port) ,##i ); return _v; } \
72 __IN1(s##_p) __IN2(s,s1,"w") __FULL_SLOW_DOWN_IO : "=a" (_v) : "Nd" (port) ,##i ); return _v; } \
/linux-2.4.37.9/arch/ppc/lib/
Dstrcase.c3 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument
8 c1 = tolower(*s1++); in strcasecmp()
14 int strncasecmp(const char *s1, const char *s2, int n) in strncasecmp() argument
19 c1 = tolower(*s1++); in strncasecmp()
/linux-2.4.37.9/arch/ppc64/lib/
Dstrcase.c11 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument
16 c1 = tolower(*s1++); in strcasecmp()
22 int strncasecmp(const char *s1, const char *s2, int n) in strncasecmp() argument
27 c1 = tolower(*s1++); in strncasecmp()
Dmemcpy.S83 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12
101 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
/linux-2.4.37.9/lib/
Dstring.c29 int strnicmp(const char *s1, const char *s2, size_t len) in strnicmp() argument
37 c1 = *s1; c2 = *s2; in strnicmp()
38 s1++; s2++; in strnicmp()
494 char * strstr(const char * s1,const char * s2) in strstr() argument
500 return (char *) s1; in strstr()
501 l1 = strlen(s1); in strstr()
504 if (!memcmp(s1,s2,l2)) in strstr()
505 return (char *) s1; in strstr()
506 s1++; in strstr()
/linux-2.4.37.9/fs/hfs/
Dstring.c101 int hfs_strcmp(const unsigned char *s1, unsigned int len1, in hfs_strcmp() argument
109 if ((tmp = (int)caseorder[*(s1++)] - in hfs_strcmp()
120 int hfs_streq(const unsigned char *s1, unsigned int len1, in hfs_streq() argument
128 if (caseorder[*(s1++)] != caseorder[*(s2++)]) { in hfs_streq()
/linux-2.4.37.9/fs/ntfs/
Dunistr.c60 int ntfs_are_names_equal(wchar_t *s1, size_t s1_len, in ntfs_are_names_equal() argument
67 return memcmp(s1, s2, s1_len << 1) ? 0: 1; in ntfs_are_names_equal()
68 return ntfs_wcsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? 0: 1; in ntfs_are_names_equal()
147 int ntfs_wcsncasecmp(wchar_t *s1, wchar_t *s2, size_t n, in ntfs_wcsncasecmp() argument
154 if ((c1 = le16_to_cpu(s1[i])) < upcase_size) in ntfs_wcsncasecmp()
Dunistr.h31 int ntfs_are_names_equal(wchar_t *s1, size_t s1_len,
40 int ntfs_wcsncasecmp(wchar_t *s1, wchar_t *s2, size_t n,
Ddir.c198 int s1 = walk->dir->u.index.recordsize; in ntfs_allocate_index_block() local
199 int nr_fix = (s1 >> vol->sector_size) + 1; in ntfs_allocate_index_block()
200 char *record = ntfs_malloc(s1); in ntfs_allocate_index_block()
205 ntfs_bzero(record, s1); in ntfs_allocate_index_block()
222 NTFS_PUTU32(record + 0x20, s1 - 0x18); in ntfs_allocate_index_block()
225 io.size = s1; in ntfs_allocate_index_block()
229 if (error || (io.size != s1 && (error = -EIO, 1))) in ntfs_allocate_index_block()
398 char* s1 = ntfs_malloc(blocksize + walk->new_entry_size); in ntfs_dir_insert() local
399 if (!s1) in ntfs_dir_insert()
401 ntfs_memcpy(s1, start, usedsize); in ntfs_dir_insert()
[all …]
/linux-2.4.37.9/arch/cris/kernel/
Dkgdb.c279 static char *gdb_cris_strcpy (char *s1, const char *s2);
503 gdb_cris_strcpy (char *s1, const char *s2) in gdb_cris_strcpy() argument
505 char *s = s1; in gdb_cris_strcpy()
507 for (s = s1; (*s++ = *s2++) != '\0'; ) in gdb_cris_strcpy()
509 return (s1); in gdb_cris_strcpy()
541 char *s1; in gdb_cris_strtol() local
545 for (s1 = (char*)s; (sd = gdb_cris_memchr(hexchars, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()
551 *endptr = s1; in gdb_cris_strtol()
/linux-2.4.37.9/fs/hfsplus/
Dunicode.c31 int hfsplus_unistrcmp(const hfsplus_unistr *s1, const hfsplus_unistr *s2) in hfsplus_unistrcmp() argument
36 len1 = be16_to_cpu(s1->length); in hfsplus_unistrcmp()
38 p1 = s1->unicode; in hfsplus_unistrcmp()
/linux-2.4.37.9/include/acpi/platform/
Dacenv.h229 #define ACPI_STRSTR(s1,s2) strstr((s1), (s2)) argument
292 #define ACPI_STRSTR(s1,s2) acpi_ut_strstr ((s1), (s2)) argument
/linux-2.4.37.9/arch/mips/sibyte/sb1250/
Dirq_handler.S139 3: #dclz s1, s0 /* Find the next interrupt */
140 .word 0x72118824 # dclz s1, s0
141 dsubu a0, zero, s1

123