Lines Matching refs:p
71 static unsigned uv__utf8_decode1_slow(const char** p, in uv__utf8_decode1_slow() argument
82 switch (pe - *p) { in uv__utf8_decode1_slow()
87 b = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
88 c = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
89 d = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
97 c = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
98 d = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
108 d = (unsigned char) *(*p)++; in uv__utf8_decode1_slow()
138 unsigned uv__utf8_decode1(const char** p, const char* pe) { in uv__utf8_decode1() argument
141 assert(*p < pe); in uv__utf8_decode1()
143 a = (unsigned char) *(*p)++; in uv__utf8_decode1()
148 return uv__utf8_decode1_slow(p, pe, a); in uv__utf8_decode1()