Home
last modified time | relevance | path

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

/string/
A Dstrstr.c43 for (int c = hs[0]; h1 != h2 && c != 0; c = *++hs) in strstr2()
53 for (int c = hs[0]; h1 != h2 && c != 0; c = *++hs) in strstr3()
83 return (char *)hs; in STRSTR()
84 hs = (const unsigned char *)strchr ((const char*)hs, ne[0]); in STRSTR()
86 return (char*)hs; in STRSTR()
103 return (char *) hs; in STRSTR()
129 if (hs > end) in STRSTR()
136 hs += m1; in STRSTR()
143 hs -= tmp; in STRSTR()
152 return (void *) hs; in STRSTR()
[all …]
A Dmemmem.c60 return (void *) hs; in __memmem()
72 uint32_t nw = ne[0] << 16 | ne[1], hw = hs[0] << 16 | hs[1]; in __memmem()
73 for (hs++; hs <= end && hw != nw; ) in __memmem()
74 hw = hw << 16 | *++hs; in __memmem()
95 for ( ; hs <= end; ) in __memmem()
100 hs += m1; in __memmem()
101 tmp = shift[hash2 (hs)]; in __memmem()
107 hs -= tmp; in __memmem()
115 if (memcmp (hs, ne, m1) == 0) in __memmem()
116 return (void *) hs; in __memmem()
[all …]

Completed in 6 milliseconds