Lines Matching refs:to
4 * The contents of this file are subject to the terms of the
23 * Use is subject to license terms.
31 / Copies s2 to s1, truncating or null-padding to always copy n bytes
52 / to check if a 32-bit word data contains a null byte or not:
77 movl (%eax), %edx / move 1 word from (%eax) to %edx
86 movl %edx, (%edi) / copy this word to (%edi)
101 movb %dl, (%edi) / copy %dl to (%edi)
114 movb %dl, (%edi) / copy %dl to (%edi)
124 movl %esi, %ecx / %ecx = length to copy null bytes
126 shrl $2, %ecx / %ecx = words to copy null bytes
132 movb $0, (%edi) / move a null byte to (%edi)