Home
last modified time | relevance | path

Searched refs:keep (Results 1 - 25 of 146) sorted by relevance

123456

/third_party/libabigail/src/
H A Dabg-corpus-priv.h122 /// functions to keep in the set of exported functions.
166 /// variables to keep in the set of exported variables.
429 /// Getter for the set of ids of functions to keep in the set of
432 /// @return the set of ids of functions to keep in the set of
438 /// Getter for the set of ids of variables to keep in the set of
441 /// @return the set of ids of variables to keep in the set of
447 /// Look at the set of functions to keep and tell if if a given
459 bool keep = true; in keep_wrt_id_of_fns_to_keep()
464 keep = false; in keep_wrt_id_of_fns_to_keep()
465 if (!keep) in keep_wrt_id_of_fns_to_keep()
505 bool keep = true; keep_wrt_regex_of_fns_to_suppress() local
534 bool keep = true; keep_wrt_regex_of_fns_to_keep() local
612 bool keep = true; keep_wrt_regex_of_vars_to_suppress() local
641 bool keep = true; keep_wrt_regex_of_vars_to_keep() local
[all...]
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngunknown.c190 int keep; /* unknown handling setting */ member
339 chunk_info[i].keep = 0; in clear_keep()
403 int keep; /* the default value */ member
516 * returning '0' to keep the chunk and '1' to discard it. in read_callback()
520 int keep, discard; in read_callback() local
523 keep = d->keep; in read_callback()
527 keep = chunk_info[chunk].keep; in read_callback()
528 if (keep in read_callback()
900 int keep = chunk_info[i].keep; check_handling() local
[all...]
/third_party/node/deps/v8/src/zone/
H A Dzone.cc74 Segment* keep = segment_head_; in Reset()
82 keep->set_next(nullptr); in Reset()
87 ASAN_UNPOISON_MEMORY_REGION(reinterpret_cast<void*>(keep->start()), in Reset()
88 keep->capacity()); in Reset()
89 keep->ZapContents(); in Reset()
91 segment_head_ = keep; in Reset()
92 position_ = RoundUp(keep->start(), kAlignmentInBytes); in Reset()
93 limit_ = keep->end(); in Reset()
95 DCHECK_EQ(segment_bytes_allocated_, keep->total_size()); in Reset()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dmemorypool.c254 * for @a keep of the given @a size.
257 * @param keep pointer to the entry to keep (maybe NULL)
259 * @return addr new address of @a keep (if it had to change)
263 void *keep, in MHD_pool_reset()
266 if (NULL != keep) in MHD_pool_reset()
268 if (keep != pool->memory) in MHD_pool_reset()
270 memmove (pool->memory, keep, size); in MHD_pool_reset()
271 keep = pool->memory; in MHD_pool_reset()
278 if (NULL != keep) in MHD_pool_reset()
262 MHD_pool_reset(struct MemoryPool *pool, void *keep, size_t size) MHD_pool_reset() argument
[all...]
/third_party/json/include/nlohmann/detail/input/
H A Djson_sax.hpp416 const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::object_start, discarded); in start_object() local
417 keep_stack.push_back(keep); in start_object()
436 const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::key, k); in key() local
437 key_keep_stack.push_back(keep); in key()
440 if (keep && ref_stack.back()) in key()
486 const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::array_start, discarded); in start_array() local
487 keep_stack.push_back(keep); in start_array()
503 bool keep = true; in end_array() local
507 keep = callback(static_cast<int>(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); in end_array()
508 if (keep) in end_array()
583 const bool keep = skip_callback || callback(static_cast<int>(ref_stack.size()), parse_event_t::value, value); handle_value() local
[all...]
/third_party/vk-gl-cts/scripts/
H A Dmustpass.py320 keep = True
324 keep = False
327 keep = pattern.match(caseName)
328 if keep:
332 if not keep:
342 keep = t == {}
343 if keep:
353 keep = False
355 if keep:
367 keep
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
H A DFilteredDataTest.java27 CldrValue keep = in testSimple()
36 CldrData src = CldrDataSupplier.forValues(ImmutableList.of(keep, remove, replace)); in testSimple()
51 assertThat(filteredValues).containsExactly(keep, replacement).inOrder(); in testSimple()
54 assertThat(filtered.get(keep.getPath())).isEqualTo(keep); in testSimple()
/third_party/node/deps/v8/tools/sanitizers/
H A Dsancov_merger.py61 keep: Option if source and intermediate sancov files should be kept.
69 keep, coverage_dir, executable, index, bucket = args
86 if not keep:
92 def generate_inputs(keep, coverage_dir, file_map, cpus):
114 inputs.extend([(keep, coverage_dir, executable, i, b)
137 options.keep, options.coverage_dir, file_map, CPUS)
152 inputs = [(options.keep, options.coverage_dir, executable, None, files)
207 parser.add_argument('--keep', default=False, action='store_true',
/third_party/ffmpeg/libavformat/
H A Durl.c198 const char *keep, *base_path_end; in ff_make_absolute_url2() local
240 keep = ub.url; in ff_make_absolute_url2()
243 ub.url_component_end_##component > keep) { \ in ff_make_absolute_url2()
244 keep = ub.url_component_end_##component; \ in ff_make_absolute_url2()
263 COPY(ub.url, keep); in ff_make_absolute_url2()
266 use_base_path = URL_COMPONENT_HAVE(ub, path) && keep <= ub.path; in ff_make_absolute_url2()
277 if (keep > ub.path) in ff_make_absolute_url2()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Drand.rs45 pub fn keep_random_devices_open(keep: bool) { in keep_random_devices_open()
47 ffi::RAND_keep_random_devices_open(keep as LenType); in keep_random_devices_open()
/third_party/libwebsockets/lib/system/metrics/
H A Dprivate-lib-system-metrics.h118 lws_metric_destroy(lws_metric_t **mt, int keep);
121 lws_metric_policy_dyn_destroy(lws_metric_policy_dyn_t *dm, int keep);
/third_party/ffmpeg/tests/
H A Dfate-run.sh28 keep=${19:-0}
214 test "$keep" -ge 1 || cleanfiles="$cleanfiles $encfile"
252 test $keep -ge 1 || cleanfiles="$cleanfiles $encfile"
273 test $keep -ge 1 || cleanfiles="$cleanfiles $encfile"
326 test "$keep" -ge 1 || cleanfiles="$cleanfiles $file"
336 test "$keep" -ge 1 || cleanfiles="$cleanfiles $file"
371 if [ "$keep" -lt 1 ]; then
398 test "$keep" -ge 1 || cleanfiles="$cleanfiles $file"
628 if test $keep -lt 2; then
/third_party/python/Tools/scripts/
H A Drun_tests.py39 # emulate -E, but keep PYTHONPATH + cross compile env vars, so
41 keep = {
49 if not name.startswith(('PYTHON', '_PYTHON')) or name in keep
/third_party/python/Modules/_ctypes/
H A Dcallproc.c615 * used to keep the object alive where this parameter refers to.
641 PyObject *keep; member
651 pa->keep = NULL; /* so we cannot forget it later */ in ConvParam()
663 pa->keep = (PyObject *)carg; in ConvParam()
671 pa->keep = obj; in ConvParam()
702 pa->keep = obj; in ConvParam()
711 pa->keep = PyCapsule_New(pa->value.p, CTYPES_CAPSULE_NAME_PYMEM, pymem_destructor); in ConvParam()
712 if (!pa->keep) { in ConvParam()
1303 Py_XDECREF(args[i].keep); in _ctypes_callproc()
1427 a.keep in copy_com_pointer()
[all...]
H A Dcallbacks.c262 /* keep is an object we have to keep alive so that the result in _CallPythonObject()
266 If there is such an object, we have no choice than to keep in _CallPythonObject()
271 PyObject *keep = setfunc(mem, result, 0); in _CallPythonObject() local
273 if (keep == NULL) { in _CallPythonObject()
280 if (keep == Py_None) { in _CallPythonObject()
281 /* Nothing to keep */ in _CallPythonObject()
282 Py_DECREF(keep); in _CallPythonObject()
/third_party/node/deps/openssl/openssl/providers/implementations/rands/seeding/
H A Drand_unix.c188 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
584 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
586 if (!keep) in ossl_rand_pool_keep_random_devices_open()
589 keep_random_devices_open = keep; in ossl_rand_pool_keep_random_devices_open()
603 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
/third_party/openssl/providers/implementations/rands/seeding/
H A Drand_unix.c188 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
584 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
586 if (!keep) in ossl_rand_pool_keep_random_devices_open()
589 keep_random_devices_open = keep; in ossl_rand_pool_keep_random_devices_open()
603 void ossl_rand_pool_keep_random_devices_open(int keep) in ossl_rand_pool_keep_random_devices_open() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
H A DRemarkLinker.cpp53 Remark &RemarkLinker::keep(std::unique_ptr<Remark> Remark) { in keep() function in RemarkLinker
97 keep(std::move(*Next)); in link()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DMain.cpp79 DepOut.keep(); in createDependencyFile()
140 OutFile.keep(); in TableGenMain()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_host.h96 // What DNG version should we keep enough data to save?
301 /// Setter for flag determining whether to keep original RAW file data.
302 /// \param keep If true, origianl RAW data will be kept.
304 void SetKeepOriginalFile (bool keep) in SetKeepOriginalFile() argument
306 fKeepOriginalFile = keep; in SetKeepOriginalFile()
309 /// Getter for flag determining whether to keep original RAW file data.
/third_party/skia/third_party/externals/libpng/
H A Dpngset.c1344 add_one_chunk(png_bytep list, unsigned int count, png_const_bytep add, int keep) in add_one_chunk() argument
1348 /* Utility function: update the 'keep' state of a chunk if it is already in in add_one_chunk()
1355 list[4] = (png_byte)keep; in add_one_chunk()
1361 if (keep != PNG_HANDLE_CHUNK_AS_DEFAULT) in add_one_chunk()
1365 list[4] = (png_byte)keep; in add_one_chunk()
1372 png_set_keep_unknown_chunks(png_structrp png_ptr, int keep, in png_set_keep_unknown_chunks() argument
1381 if (keep < 0 || keep >= PNG_HANDLE_CHUNK_LAST) in png_set_keep_unknown_chunks()
1383 png_app_error(png_ptr, "png_set_keep_unknown_chunks: invalid keep"); in png_set_keep_unknown_chunks()
1390 png_ptr->unknown_default = keep; in png_set_keep_unknown_chunks()
[all...]
/third_party/node/tools/icu/
H A Dicutrim.py204 # keep - always keep these
205 if "keep" in config:
206 keep = set(config["keep"]) variable
208 keep = set() variable
297 # don't allow "keep" items to creep in here.
299 remove = remove - keep
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dkill-load.c1 int keep(volatile int *p) { return *p && 0; } in keep() function
H A Dkill-pure-call.c4 int keep(int a) { return side(a) && 0; } in keep() function
H A Dkill-store.c1 void keep(int *p) { *p = 0; } in keep() function

Completed in 219 milliseconds

123456