/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
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/mesa3d/src/compiler/nir/ |
D | nir_lower_wpos_center.c | 51 nir_ssa_def *wpos = &intr->dest.ssa; in update_fragcoord() local 58 wpos = nir_fadd(b, wpos, nir_imm_vec4(b, 0.5f, 0.5f, 0.0f, 0.0f)); in update_fragcoord() 62 wpos = nir_fadd(b, wpos, in update_fragcoord() 70 nir_ssa_def_rewrite_uses_after(&intr->dest.ssa, wpos, in update_fragcoord() 71 wpos->parent_instr); in update_fragcoord()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
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()
|
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()
|
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()
|
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()
|
D | __overflow.c | 7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
|
/third_party/musl/src/stdio/ |
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()
|
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()
|
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()
|
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()
|
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()
|
D | vswprintf.c | 18 if (s!=f->wbase && sw_write(f, f->wbase, f->wpos-f->wbase)==-1) in sw_write() 28 f->wpos = f->wbase = f->wend = 0; in sw_write() 33 f->wpos = f->wbase = f->buf; in sw_write()
|
D | fopencookie.c | 58 size_t len2 = f->wpos - f->wbase; in cookiewrite() 61 f->wpos = f->wbase; in cookiewrite() 62 if (cookiewrite(f, f->wpos, len2) < len2) return 0; in cookiewrite() 66 f->wpos = f->wbase = f->wend = 0; in cookiewrite()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
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()
|
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()
|
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()
|
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()
|
D | __overflow.c | 7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
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()
|
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()
|
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()
|
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()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-audio/ |
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/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/ |
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()
|