/third_party/openssl/test/ |
H A D | x509aux.c | 42 X509 *reuse = NULL; in test_certs() local 95 reuse = d2i(NULL, &p, enclen); in test_certs() 96 if (reuse == NULL) { in test_certs() 101 err = X509_cmp(reuse, cert); in test_certs() 149 X509_free(reuse); in test_certs()
|
/third_party/curl/lib/ |
H A D | socketpair.c | 70 int reuse = 1; in Curl_socketpair() local 89 (void)reuse; in Curl_socketpair() 100 (char *)&reuse, (curl_socklen_t)sizeof(reuse)) == -1) in Curl_socketpair()
|
H A D | url.c | 745 'maxlifetime_conn' ago, to be subject for reuse. */ 818 /* For reuse, we want a "clean" connection state. The includes in extract_if_dead() 975 return FALSE; /* no reuse */ in ConnectionExists() 1013 completed yet and until then we don't reuse this connection */ in ConnectionExists() 1036 " isn't open enough, can't reuse", check->connection_id); in ConnectionExists() 1102 " has different SSL proxy parameters, can't reuse", in ConnectionExists() 1117 return FALSE; /* no reuse */ in ConnectionExists() 1125 reuse a random other one, although if we didn't ask for a in ConnectionExists() 1126 particular one we can reuse one that was bound. in ConnectionExists() 1132 will most likely also reuse th in ConnectionExists() 3423 bool reuse; global() local [all...] |
/third_party/skia/src/sksl/ |
H A D | SkSLString.cpp | 39 va_list reuse; in vappendf() local 40 va_copy(reuse, args); in vappendf() 46 vsnprintf(newBuffer.get(), size + 1, fmt, reuse); in vappendf() 49 va_end(reuse); in vappendf()
|
/third_party/skia/tests/ |
H A D | NdkDecodeTest.cpp | 217 SkBitmap reuse; in DEF_TEST() local 218 reuse.allocPixels(noColorCorrection); in DEF_TEST() 219 REPORTER_ASSERT(r, gen->getPixels(reuse.pixmap())); in DEF_TEST() 221 REPORTER_ASSERT(r, ToolUtils::equal_pixels(orig, reuse)); in DEF_TEST() 338 SkBitmap reuse; in DEF_TEST() local 339 reuse.allocPixels(gen->getInfo()); in DEF_TEST() 340 REPORTER_ASSERT(r, gen->getPixels(reuse.pixmap())); in DEF_TEST() 342 REPORTER_ASSERT(r, ToolUtils::equal_pixels(orig, reuse)); in DEF_TEST() 482 // This also tests that we can reuse the same generator for a different in DEF_TEST()
|
/third_party/rust/crates/rustix/src/termios/ |
H A D | tty.rs | 34 /// If `reuse` is non-empty, reuse its buffer to store the result if possible. 46 pub fn ttyname<Fd: AsFd, B: Into<Vec<u8>>>(dirfd: Fd, reuse: B) -> io::Result<CString> { in ttyname() 47 _ttyname(dirfd.as_fd(), reuse.into()) in ttyname()
|
/third_party/musl/Benchmark/musl/ |
H A D | socket_test.cpp | 314 int reuse = 1; in BindAt() local 315 if (setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == -1) { in BindAt() 559 int reuse = 1; in Bm_function_bind() local 560 if (setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == -1) { in Bm_function_bind()
|
/third_party/rust/crates/rustix/src/process/ |
H A D | chdir.rs | 37 /// If `reuse` is non-empty, reuse its buffer to store the result if possible. 47 pub fn getcwd<B: Into<Vec<u8>>>(reuse: B) -> io::Result<CString> { in getcwd() 48 _getcwd(reuse.into()) in getcwd()
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | at.rs | 69 /// If `reuse` is non-empty, reuse its buffer to store the result if possible. 81 reuse: B, in readlinkat() 83 path.into_with_c_str(|path| _readlinkat(dirfd.as_fd(), path, reuse.into())) in readlinkat()
|
/third_party/libdrm/etnaviv/ |
H A D | etnaviv_bo.c | 119 bo->reuse = 1; in etna_bo_new() 238 if (bo->reuse && (etna_bo_cache_free(&dev->bo_cache, bo) == 0)) in etna_bo_del() 264 bo->reuse = 0; in etna_bo_get_name() 291 bo->reuse = 0; in etna_bo_dmabuf()
|
H A D | etnaviv_priv.h | 111 int reuse; member
|
/third_party/mesa3d/src/etnaviv/drm/ |
H A D | etnaviv_bo.c | 116 * have finished, at which point we can reuse the VMA space. in etna_bo_free() 207 bo->reuse = 1; in etna_bo_new() 319 if (bo->reuse && (etna_bo_cache_free(&dev->bo_cache, bo) == 0)) in etna_bo_del() 345 bo->reuse = 0; in etna_bo_get_name() 372 bo->reuse = 0; in etna_bo_dmabuf()
|
H A D | etnaviv_priv.h | 115 int reuse; member
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | expand.c | 972 struct expression *reuse = nested, *entry; in expand_pos_expression() local 978 if (!reuse) { in expand_pos_expression() 984 reuse = alloc_expression(entry->pos, EXPR_POS); in expand_pos_expression() 986 reuse->type = EXPR_POS; in expand_pos_expression() 987 reuse->ctype = entry->ctype; in expand_pos_expression() 988 reuse->init_offset = offset; in expand_pos_expression() 989 reuse->init_nr = 1; in expand_pos_expression() 990 reuse->init_expr = entry; in expand_pos_expression() 991 REPLACE_CURRENT_PTR(entry, reuse); in expand_pos_expression() 992 reuse in expand_pos_expression() [all...] |
/third_party/json/ |
H A D | Makefile | 279 reuse: 280 pipx run reuse addheader --recursive single_include include -tjson --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2022" 281 pipx run reuse addheader $(TESTS_SRCS) --style=c -tjson_support --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2022" 282 pipx run reuse lint
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/ |
H A D | minimal-http-client-multi.c | 30 * Note: stats are kept on tls session reuse and checked depending on mode 32 * - default: no reuse expected (connections made too quickly at once) 33 * - staggered, no pipeline: n - 1 reuse expected 34 * - staggered, pipelined: no reuse expected 56 reuse, variable 182 reuse++; in callback_http() 581 /* vhost option allowing tls session reuse, requires in main() 583 if (lws_cmdline_option(argc, argv, "--no-tls-session-reuse")) in main() 690 lwsl_user("%s: session reuse count %d\n", __func__, reuse); in main() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | network.c | 214 int reuse = 1; in ff_listen() local 215 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse))) { in ff_listen()
|
H A D | libsrt.c | 239 int reuse = 1; in libsrt_listen() local 243 if (srt_setsockopt(fd, SOL_SOCKET, SRTO_REUSEADDR, &reuse, sizeof(reuse))) { in libsrt_listen()
|
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-parser.h | 145 inline void reuse(ZoneVector<T>* vec) { in reuse() function in v8::internal::wasm::AsmJsParser::CachedVectors 160 ~CachedVector() { cache_->reuse(this); } in ~CachedVector()
|
/third_party/skia/fuzz/ |
H A D | FuzzDDLThreading.cpp | 198 bool reuse = make_fuzz_t<bool>(fFuzz); in releasePromiseImage() local 199 if (reuse) { in releasePromiseImage()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/math/ |
H A D | BigDecimal.java | 73 /* 1998.07.01 improve byteaddsub to allow array reuse, etc. */ 1046 // [we could reuse the new LHS for result in this case] in add() 1210 // [reuse possible only after chop; accounting makes not worthwhile] in add() 1572 // [we could reuse the new LHS for result in this case] in multiply() 3472 // 1998.07.01 -- changed to allow destructive reuse of LHS 3477 private static final byte[] byteaddsub(byte a[], int avlen, byte b[], int bvlen, int m, boolean reuse) { in byteaddsub() argument 3500 if (reuse) in byteaddsub() 3502 reb = a; // OK to reuse A in byteaddsub() 3555 if (reuse) in byteaddsub() 3557 newarr = a; // OK to reuse in byteaddsub() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/math/ |
H A D | BigDecimal.java | 74 /* 1998.07.01 improve byteaddsub to allow array reuse, etc. */ 1022 // [we could reuse the new LHS for result in this case] in add() 1186 // [reuse possible only after chop; accounting makes not worthwhile] in add() 1534 // [we could reuse the new LHS for result in this case] in multiply() 3397 // 1998.07.01 -- changed to allow destructive reuse of LHS 3402 private static final byte[] byteaddsub(byte a[], int avlen, byte b[], int bvlen, int m, boolean reuse) { in byteaddsub() argument 3425 if (reuse) in byteaddsub() 3427 reb = a; // OK to reuse A in byteaddsub() 3480 if (reuse) in byteaddsub() 3482 newarr = a; // OK to reuse in byteaddsub() [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp9mc_16bpp.asm | 234 ; FIXME maybe reuse loads from previous rows, or just 336 ; FIXME maybe reuse loads from previous rows, or just
|
H A D | vp9mc.asm | 350 ; FIXME maybe reuse loads from previous rows, or just 443 ; FIXME maybe reuse loads from previous rows, or just more generally 509 ; FIXME maybe reuse loads from previous rows, or just
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_convolution.asm | 119 ; reuse r to hold sum, init with zero
|