Searched refs:unaligned (Results 1 - 3 of 3) sorted by relevance

/haiku/src/system/libroot/posix/glibc/iconv/
H A Dskeleton.c210 /* Define macros which can access unaligned buffers. These macros are
214 /* We can handle unaligned memory access. */
535 int unaligned; local
539 # define unaligned 0 macro
582 unaligned =
606 if (__builtin_expect (!unaligned, 1))
697 if (__builtin_expect (!unaligned, 1))
796 #undef unaligned macro
H A Dloop.c63 unaligned memory accesses. Some of the character encodings have
65 access unaligned memory we still have to read byte-wise. */
68 /* We can handle unaligned memory access. */
310 unaligned access. */
318 # undef unaligned macro
479 #undef unaligned macro
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_qpair.c533 uint32_t nseg, cur_nseg, modulo, unaligned; local
544 unaligned = phys_addr & (PAGE_SIZE - 1);
545 if (modulo || unaligned)
546 nseg += 1 + ((modulo + unaligned - 1) >> PAGE_SHIFT);
560 seg_addr = payload + PAGE_SIZE - unaligned;
566 seg_addr = payload + cur_nseg * PAGE_SIZE - unaligned;
671 uint32_t modulo, unaligned, sge_count = 0; local
708 unaligned = phys_addr & (PAGE_SIZE - 1);
709 if (modulo || unaligned)
710 nseg += 1 + ((modulo + unaligned
[all...]

Completed in 45 milliseconds