Searched refs:words (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/arch-mips/string/ |
D | memmove.c | 186 unsigned long words, unsigned long bytes, void *ret) in unaligned_words_forward() argument 190 words_by_1 = words % 8; in unaligned_words_forward() 191 words_by_8 = words >> 3; in unaligned_words_forward() 201 words_by_1 = words % 4; in unaligned_words_forward() 202 words_by_4 = words >> 2; in unaligned_words_forward() 225 unsigned long words, unsigned long bytes, void *ret) in unaligned_words_backward() argument 229 words_by_1 = words % 8; in unaligned_words_backward() 230 words_by_8 = words >> 3; in unaligned_words_backward() 240 words_by_1 = words % 4; in unaligned_words_backward() 241 words_by_4 = words >> 2; in unaligned_words_backward() [all …]
|
D | memcpy.c | 148 unsigned long words, unsigned long bytes, void *ret) in unaligned_words() argument 152 words_by_1 = words % 8; in unaligned_words() 153 words_by_8 = words >> 3; in unaligned_words() 172 words_by_1 = words % 4; in unaligned_words() 173 words_by_4 = words >> 2; in unaligned_words() 201 unsigned long words, unsigned long bytes, void *ret) in unaligned_words() argument 206 for (i = 0; i < words; i++) { in unaligned_words() 238 unsigned long words, unsigned long bytes, void *ret) in aligned_words() argument 242 words_by_1 = words % 8; in aligned_words() 243 words_by_8 = words >> 3; in aligned_words() [all …]
|
D | memcmp.c | 140 unsigned long words, unsigned long bytes) in unaligned_words() argument 147 for (; words >= 16; words -= 8) { in unaligned_words() 185 for (; words >= 4; words -= 4) { in unaligned_words() 202 while (words--) { in unaligned_words() 217 unsigned long words, unsigned long bytes) in unaligned_words() argument 219 return do_bytes (a, b, (sizeof (reg_t) * words) + bytes); in unaligned_words() 226 unsigned long words, unsigned long bytes) in aligned_words() argument 234 for (; words >= 24; words -= 12) { in aligned_words() 283 for (; words >= 4; words -= 4) { in aligned_words() 299 while (words--) { in aligned_words() [all …]
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
D | inet_ntop.c | 106 u_int words[IN6ADDRSZ / INT16SZ]; in inet_ntop6() local 115 memset(words, '\0', sizeof words); in inet_ntop6() 117 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_ntop6() 121 if (words[i] == 0) { in inet_ntop6() 169 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6() 175 advance = snprintf(tp, ep - tp, "%x", words[i]); in inet_ntop6()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_nan.c | 51 _scan_nan(uint32_t *words, int num_words, const char *s) argument 56 bzero(words, num_words * sizeof(uint32_t)); 74 words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
|
/bionic/libc/kernel/uapi/linux/ |
D | tcp.h | 42 __be32 words[5]; member 44 #define tcp_flag_word(tp) (((union tcp_word_hdr *) (tp))->words[3])
|
/bionic/libc/kernel/uapi/drm/ |
D | tegra_drm.h | 76 __u32 words; member
|