Home
last modified time | relevance | path

Searched refs:wend (Results 1 - 25 of 54) sorted by relevance

123

/third_party/node/deps/openssl/openssl/apps/lib/
H A Dwin32_init.c144 WCHAR *warg, *wend, *p; in win32_utf8argv() local
179 warg = wend = p; in win32_utf8argv()
217 *wend++ = L'\\'; in win32_utf8argv()
224 *wend++ = *p++; in win32_utf8argv()
227 *wend++ = L'\\'; in win32_utf8argv()
238 *wend++ = *p++; in win32_utf8argv()
247 *wend++ = *p++; in win32_utf8argv()
251 wlen = wend - warg; in win32_utf8argv()
/third_party/openssl/apps/lib/
H A Dwin32_init.c144 WCHAR *warg, *wend, *p; in win32_utf8argv() local
179 warg = wend = p; in win32_utf8argv()
217 *wend++ = L'\\'; in win32_utf8argv()
224 *wend++ = *p++; in win32_utf8argv()
227 *wend++ = L'\\'; in win32_utf8argv()
238 *wend++ = *p++; in win32_utf8argv()
247 *wend++ = *p++; in win32_utf8argv()
251 wlen = wend - warg; in win32_utf8argv()
/third_party/musl/porting/linux/user/src/stdio/
H A D__stdio_write.c13 f->wpos = f->wbase = f->wend = 0; in __flush_buffer()
22 f->wend = f->buf + f->buf_size; in __flush_buffer()
39 if (f->lbf < 0 && rem <= f->wend - f->wpos) { in __stdio_write()
51 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
H A D__towrite.c21 f->wend = f->buf + f->buf_size; in __towrite()
/third_party/musl/src/stdio/
H A D__stdio_write.c13 f->wpos = f->wbase = f->wend = 0; in __flush_buffer()
22 f->wend = f->buf + f->buf_size; in __flush_buffer()
39 if (f->lbf < 0 && rem <= f->wend - f->wpos) { in __stdio_write()
51 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
H A Dext.c17 return (f->flags & F_NORD) || f->wend; in __fwriting()
47 return f->wend ? f->wpos - f->wbase : 0; in __fpending()
52 f->wpos = f->wbase = f->wend = 0; in __fpurge()
H A D__overflow.c6 if (!f->wend && __towrite(f)) return EOF; in __overflow()
7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
H A Dfwrite.c11 if (!f->wend && __towrite(f)) return 0; in __fwritex()
13 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex()
H A Dvswprintf.c29 f->wpos = f->wbase = f->wend = 0; in sw_write()
33 f->wend = f->buf + f->buf_size; in sw_write()
H A D__towrite.c21 f->wend = f->buf + f->buf_size; in __towrite()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A D__overflow.c6 if (!f->wend && __towrite(f)) return EOF; in __overflow()
7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
H A D__stdio_write.c17 f->wend = f->buf + f->buf_size; in __stdio_write()
22 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
H A Dfwrite.c8 if (!f->wend && __towrite(f)) return 0; in __fwritex()
10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex()
H A D__towrite.c15 f->wend = f->buf + f->buf_size; in __towrite()
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A D__overflow.c6 if (!f->wend && __towrite(f)) return EOF; in __overflow()
7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
H A D__stdio_write.c18 f->wend = f->buf + f->buf_size; in __stdio_write()
23 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
H A Dfwrite.c8 if (!f->wend && __towrite(f)) return 0; in __fwritex()
10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex()
H A D__towrite.c15 f->wend = f->buf + f->buf_size; in __towrite()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A D__overflow.c6 if (!f->wend && __towrite(f)) return EOF; in __overflow()
7 if (f->wpos != f->wend && c != f->lbf) return *f->wpos++ = c; in __overflow()
H A D__stdio_write.c18 f->wend = f->buf + f->buf_size; in __stdio_write()
23 f->wpos = f->wbase = f->wend = 0; in __stdio_write()
H A Dfwrite.c8 if (!f->wend && __towrite(f)) return 0; in __fwritex()
10 if (l > f->wend - f->wpos) return f->write(f, s, l); in __fwritex()
H A D__towrite.c15 f->wend = f->buf + f->buf_size; in __towrite()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_exp.c172 int i, j, bits, ret = 0, wstart, wend, window, wvalue; in BN_mod_exp_recp() local
244 wend = 0; /* The bottom bit of the window */ in BN_mod_exp_recp()
273 wend = 0; in BN_mod_exp_recp()
278 wvalue <<= (i - wend); in BN_mod_exp_recp()
280 wend = i; in BN_mod_exp_recp()
284 /* wend is the size of the current window */ in BN_mod_exp_recp()
285 j = wend + 1; in BN_mod_exp_recp()
298 wstart -= wend + 1; in BN_mod_exp_recp()
315 int i, j, bits, ret = 0, wstart, wend, window, wvalue; in BN_mod_exp_mont() local
397 wend in BN_mod_exp_mont()
1314 int i, j, bits, ret = 0, wstart, wend, window, wvalue; BN_mod_exp_simple() local
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_exp.c172 int i, j, bits, ret = 0, wstart, wend, window, wvalue; in BN_mod_exp_recp() local
244 wend = 0; /* The bottom bit of the window */ in BN_mod_exp_recp()
265 wend = 0; in BN_mod_exp_recp()
270 wvalue <<= (i - wend); in BN_mod_exp_recp()
272 wend = i; in BN_mod_exp_recp()
276 /* wend is the size of the current window */ in BN_mod_exp_recp()
277 j = wend + 1; in BN_mod_exp_recp()
290 wstart -= wend + 1; in BN_mod_exp_recp()
307 int i, j, bits, ret = 0, wstart, wend, window, wvalue; in BN_mod_exp_mont() local
389 wend in BN_mod_exp_mont()
1306 int i, j, bits, ret = 0, wstart, wend, window, wvalue; BN_mod_exp_simple() local
[all...]
/third_party/musl/porting/liteos_a/kernel/src/internal/
H A Dstdio_impl.h23 unsigned char *wend, *wpos; member
100 ( (((unsigned char)(c)!=(f)->lbf && (f)->wpos!=(f)->wend)) \

Completed in 6 milliseconds

123