Lines Matching refs:dl
57 movb (%eax,%ecx), %dl /* load current char */
58 movb %dl, (%eax) /* and store it */
59 testb %dl, %dl /* was it NUL? */
62 movb 1(%eax,%ecx), %dl /* load current char */
63 movb %dl, 1(%eax) /* and store it */
64 testb %dl, %dl /* was it NUL? */
67 movb 2(%eax,%ecx), %dl /* load current char */
68 movb %dl, 2(%eax) /* and store it */
69 testb %dl, %dl /* was it NUL? */
72 movb 3(%eax,%ecx), %dl /* load current char */
73 movb %dl, 3(%eax) /* and store it */
74 testb %dl, %dl /* was it NUL? */