Home
last modified time | relevance | path

Searched refs:z2 (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dmisc.c294 ULong z2; local
344 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
345 carry = z2 >> 16;
346 Storeinc(xc, z2, z);
355 z2 = *xc;
359 Storeinc(xc, z, z2);
360 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
361 carry = z2 >> 16;
364 *xc = z2;
/bionic/libc/upstream-openbsd/lib/libc/string/
Dstrstr.c134 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() local
135 if (z2) { in twoway_strstr()
136 z = z2; in twoway_strstr()