Searched refs:b1 (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/arch-arm/generic/bionic/ |
D | strcmp.S | 142 b1 .req r2 164 mov b1, #1 165 orr b1, b1, b1, lsl #8 166 orr b1, b1, b1, lsl #16 181 sub r3, w1, b1 184 ands r3, r3, b1, lsl #7 227 sub r3, w1, b1 232 ands r3, r3, b1, lsl #7 274 sub r3, w1, b1 277 ands r3, r3, b1, lsl #7
|
/bionic/libc/include/ |
D | strings.h | 63 #define bcopy(b1, b2, len) __bionic_bcopy((b1), (b2), (len)) argument 64 static __inline__ __always_inline void __bionic_bcopy(const void* _Nonnull b1, void* _Nonnull b2, s… in __bionic_bcopy() argument 65 __builtin_memmove(b2, b1, len); in __bionic_bcopy()
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | misc.c | 184 Bigint *b1; local 212 b1 = Balloc(b->k+1); 213 if (b1 == NULL) 215 Bcopy(b1, b); 217 b = b1; 399 Bigint *b1, *p5, *p51; local 431 b1 = mult(b, p5); 432 if (b1 == NULL) 435 b = b1; 470 Bigint *b1; local [all …]
|
D | dtoa.c | 126 Bigint *b, *b1, *delta, *mlo, *mhi, *S; local 529 b1 = mult(mhi, b); 530 if (b1 == NULL) 533 b = b1;
|
D | gdtoa.c | 162 Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S; local 552 b1 = mult(mhi, b); 553 if (b1 == NULL) 556 b = b1;
|
D | strtodg.c | 55 Bigint *b1; local 82 b1 = Balloc(b->k+1); 83 if (b1 == NULL) 85 Bcopy(b1,b); 87 b = b1;
|
/bionic/tests/ |
D | stdio_test.cpp | 3288 int8_t b1 = 0xFF; in TEST() local 3289 snprintf(buf, sizeof(buf), "<%w8d>", b1); in TEST() 3359 int8_t b1 = 0xFF; in TEST() local 3360 swprintf(buf, sizeof(buf), L"<%w8d>", b1); in TEST()
|