/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A D | internal.c | 135 char *wpos = val; in MHD_http_unescape() local 148 *wpos = '\0'; in MHD_http_unescape() 149 return wpos - val; in MHD_http_unescape() 157 *wpos = (char)((unsigned char) num); in MHD_http_unescape() 158 wpos++; in MHD_http_unescape() 164 *wpos = *rpos; in MHD_http_unescape() 165 wpos++; in MHD_http_unescape() 169 *wpos = '\0'; /* add 0-terminator */ in MHD_http_unescape() 170 return wpos - val; /* = strlen(val) */ in MHD_http_unescape()
|
/third_party/musl/porting/linux/user/src/stdio/ |
H A D | __stdio_write.c | 9 size_t rem = f->wpos - f->wbase; in __flush_buffer() 13 f->wpos = f->wbase = f->wend = 0; in __flush_buffer() 23 f->wpos = f->wbase = f->buf; in __flush_buffer() 39 if (f->lbf < 0 && rem <= f->wend - f->wpos) { in __stdio_write() 40 memcpy(f->wpos, wbuf, rem); in __stdio_write() 41 f->wpos += rem; in __stdio_write() 51 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
|
H A D | vsnprintf.c | 17 size_t already_size = f->wpos - f->wbase; in sn_write() 20 memcpy(f->wpos, s, k); in sn_write() 21 f->wpos += k; in sn_write()
|
/third_party/musl/src/stdio/ |
H A D | __stdio_write.c | 9 size_t rem = f->wpos - f->wbase; in __flush_buffer() 13 f->wpos = f->wbase = f->wend = 0; in __flush_buffer() 23 f->wpos = f->wbase = f->buf; in __flush_buffer() 39 if (f->lbf < 0 && rem <= f->wend - f->wpos) { in __stdio_write() 40 memcpy(f->wpos, wbuf, rem); in __stdio_write() 41 f->wpos += rem; in __stdio_write() 51 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
|
H A D | fflush.c | 17 if (f->wpos != f->wbase) r |= fflush(f); in fflush() 28 if (f->wpos != f->wbase) { in fflush() 30 if (!f->wpos) { in fflush() 40 f->wpos = f->wbase = f->wend = 0; in fflush()
|
H A D | vsnprintf.c | 17 size_t already_size = f->wpos - f->wbase; in sn_write() 20 memcpy(f->wpos, s, k); in sn_write() 21 f->wpos += k; in sn_write()
|
H A D | fputwc.c | 18 } else if (f->wpos + MB_LEN_MAX < f->wend) { in __fputwc_unlocked() 19 l = wctomb((void *)f->wpos, c); in __fputwc_unlocked() 21 else f->wpos += l; in __fputwc_unlocked()
|
H A D | fseek.c | 19 if (f->wpos != f->wbase) { in __fseeko_unlocked() 21 if (!f->wpos) return -1; in __fseeko_unlocked() 25 f->wpos = f->wbase = f->wend = 0; in __fseeko_unlocked()
|
H A D | fwrite.c | 13 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex() 26 memcpy(f->wpos, s, l); in __fwritex() 27 f->wpos += l; in __fwritex()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_wpos_center.c | 50 nir_ssa_def *wpos = &intr->dest.ssa; in update_fragcoord() local 58 wpos = nir_fadd(b, wpos, in update_fragcoord() 65 nir_ssa_def_rewrite_uses_after(&intr->dest.ssa, wpos, in update_fragcoord() 66 wpos->parent_instr); in update_fragcoord()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | fflush.c | 17 if (f->wpos != f->wbase) r |= fflush(f); in fflush() 28 if (f->wpos != f->wbase) { in fflush() 30 if (!f->wpos) { in fflush() 40 f->wpos = f->wbase = f->wend = 0; in fflush()
|
H A D | fseek.c | 16 if (f->wpos != f->wbase) { in __fseeko_unlocked() 18 if (!f->wpos) return -1; in __fseeko_unlocked() 22 f->wpos = f->wbase = f->wend = 0; in __fseeko_unlocked()
|
H A D | __stdio_write.c | 7 { .iov_base = f->wbase, .iov_len = f->wpos-f->wbase }, in __stdio_write() 18 f->wpos = f->wbase = f->buf; in __stdio_write() 22 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
|
H A D | fwrite.c | 10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex() 23 memcpy(f->wpos, s, l); in __fwritex() 24 f->wpos += l; in __fwritex()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | fflush.c | 17 if (f->wpos != f->wbase) r |= __fflush(f);
in __fflush() 28 if (f->wpos != f->wbase) {
in __fflush() 30 if (!f->wpos) {
in __fflush() 40 f->wpos = f->wbase = f->wend = 0;
in __fflush()
|
H A D | fseek.c | 9 if (f->wpos != f->wbase) {
in __fseeko_unlocked() 11 if (!f->wpos) return -1;
in __fseeko_unlocked() 15 f->wpos = f->wbase = f->wend = 0;
in __fseeko_unlocked()
|
H A D | __stdio_write.c | 7 { .iov_base = f->wbase, .iov_len = f->wpos-f->wbase },
in __stdio_write() 19 f->wpos = f->wbase = f->buf;
in __stdio_write() 23 f->wpos = f->wbase = f->wend = 0;
in __stdio_write()
|
H A D | fwrite.c | 10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex() 23 memcpy(f->wpos, s, l); in __fwritex() 24 f->wpos += l; in __fwritex()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | fflush.c | 17 if (f->wpos != f->wbase) r |= __fflush(f);
in __fflush() 28 if (f->wpos != f->wbase) {
in __fflush() 30 if (!f->wpos) {
in __fflush() 40 f->wpos = f->wbase = f->wend = 0;
in __fflush()
|
H A D | fseek.c | 9 if (f->wpos != f->wbase) {
in __fseeko_unlocked() 11 if (!f->wpos) return -1;
in __fseeko_unlocked() 15 f->wpos = f->wbase = f->wend = 0;
in __fseeko_unlocked()
|
H A D | __stdio_write.c | 7 { .iov_base = f->wbase, .iov_len = f->wpos-f->wbase },
in __stdio_write() 19 f->wpos = f->wbase = f->buf;
in __stdio_write() 23 f->wpos = f->wbase = f->wend = 0;
in __stdio_write()
|
H A D | fwrite.c | 10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex() 23 memcpy(f->wpos, s, l); in __fwritex() 24 f->wpos += l; in __fwritex()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-audio/ |
H A D | audio.c | 32 int wpos; member 151 ((vhd->wpos - vhd->rpos) & in callback_raw_test() 157 n = snd_pcm_readi(vhd->pcm_capture, &vhd->simplebuf[vhd->wpos], in callback_raw_test() 158 (sizeof(vhd->simplebuf) - vhd->wpos) / 2); in callback_raw_test() 162 vhd->wpos = (vhd->wpos + (n * 2)) & (sizeof(vhd->simplebuf) - 1); in callback_raw_test()
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
H A D | r300_vs.c | 103 vs_outputs->wpos = i; in r300_shader_read_vs_outputs() 170 if (vs->wpos) in set_vertex_inputs_outputs() 171 c->code->outputs[outputs->wpos] = reg++; in set_vertex_inputs_outputs() 232 compiler.RequiredOutputs = ~(~0U << (vs->info.num_outputs + (vs->wpos ? 1 : 0))); in r300_translate_vertex_shader() 236 if (vs->wpos) in r300_translate_vertex_shader() 237 rc_copy_output(&compiler.Base, vs->outputs.pos, vs->outputs.wpos); in r300_translate_vertex_shader()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/ |
H A D | audio.c | 55 int wpos; member 87 while (s && avhd->wpos != avhd->npos) { in spool_capture() 94 avhd->wpos, avhd->npos); in spool_capture() 359 vhd->p[(vhd->wpos + s) % LWS_ARRAY_SIZE(vhd->p)] = temp[s]; in callback_audio() 430 s = (vhd->wpos - vhd->porcpos) % LWS_ARRAY_SIZE(vhd->p); in callback_audio() 458 vhd->wpos = (vhd->wpos + n) % LWS_ARRAY_SIZE(vhd->p); in callback_audio()
|