Lines Matching +full:3 +full:d1
20 int d0, d1, d2; in strcpy() local
25 : "=&S" (d0), "=&D" (d1), "=&a" (d2) in strcpy()
35 int d0, d1, d2, d3; in strncpy() local
45 : "=&S" (d0), "=&D" (d1), "=&c" (d2), "=&a" (d3) in strncpy()
55 int d0, d1, d2, d3; in strcat() local
63 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3) in strcat()
64 : "0" (src), "1" (dest), "2" (0), "3" (0xffffffffu) : "memory"); in strcat()
73 int d0, d1, d2, d3; in strncat() local
77 "movl %8,%3\n" in strncat()
78 "1:\tdecl %3\n\t" in strncat()
86 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3) in strncat()
87 : "0" (src), "1" (dest), "2" (0), "3" (0xffffffffu), "g" (count) in strncat()
97 int d0, d1; in strcmp() local
105 "jmp 3f\n" in strcmp()
108 "3:" in strcmp()
109 : "=a" (res), "=&S" (d0), "=&D" (d1) in strcmp()
121 int d0, d1, d2; in strncmp() local
122 asm volatile("1:\tdecl %3\n\t" in strncmp()
126 "jne 3f\n\t" in strncmp()
131 "3:\tsbbl %%eax,%%eax\n\t" in strncmp()
134 : "=a" (res), "=&S" (d0), "=&D" (d1), "=&c" (d2) in strncmp()
135 : "1" (cs), "2" (ct), "3" (count) in strncmp()
224 "je 3f\n\t" in strnlen()
229 "3:\tsubl %2,%0" in strnlen()