Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/arch-arm/generic/bionic/
Dstrcmp.S142 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/
Dstrings.h63 #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/
Dmisc.c184 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 …]
Ddtoa.c126 Bigint *b, *b1, *delta, *mlo, *mhi, *S; local
529 b1 = mult(mhi, b);
530 if (b1 == NULL)
533 b = b1;
Dgdtoa.c162 Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S; local
552 b1 = mult(mhi, b);
553 if (b1 == NULL)
556 b = b1;
Dstrtodg.c55 Bigint *b1; local
82 b1 = Balloc(b->k+1);
83 if (b1 == NULL)
85 Bcopy(b1,b);
87 b = b1;
/bionic/tests/
Dstdio_test.cpp3288 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()