/external/brotli/java/org/brotli/wrapper/enc/ |
D | EncoderJNI.java | 30 private boolean fresh = true; field in EncoderJNI.Wrapper 63 fresh = false; in push() 94 fresh = false; in pull()
|
/external/brotli/java/org/brotli/wrapper/dec/ |
D | DecoderJNI.java | 33 private boolean fresh = true; field in DecoderJNI.Wrapper 56 fresh = false; in push() 95 fresh = false; in pull()
|
/external/brotli/c/enc/ |
D | hash_composite_inc.h | 39 BROTLI_BOOL fresh; member 49 self->fresh = BROTLI_TRUE; in FN() 60 if (self->fresh) { in FN() 61 self->fresh = BROTLI_FALSE; in FN()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/protobufs/ |
D | spvtoolsfuzz.proto | 302 // A series of pairs of fresh ids, one per access chain index, for the results 356 // A fresh id for the new merge block. 359 // A fresh id for the new block where the actual instruction is 366 // A fresh id for the result id of the instruction (the original 370 // A fresh id for the new block where the placeholder instruction 374 // A fresh id for the placeholder instruction. 420 // A fresh id for a boolean OpPhi whose value will be true iff the function 427 // A fresh id that will get the value being returned, if the function is 444 // A fresh id into which the loop limiter's current value can be loaded. 447 // A fresh id that can be used to increment the loaded value by 1. [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/protobufs/ |
D | spvtoolsfuzz.proto | 302 // A series of pairs of fresh ids, one per access chain index, for the results 356 // A fresh id for the new merge block. 359 // A fresh id for the new block where the actual instruction is 366 // A fresh id for the result id of the instruction (the original 370 // A fresh id for the new block where the placeholder instruction 374 // A fresh id for the placeholder instruction. 420 // A fresh id for a boolean OpPhi whose value will be true iff the function 427 // A fresh id that will get the value being returned, if the function is 444 // A fresh id into which the loop limiter's current value can be loaded. 447 // A fresh id that can be used to increment the loaded value by 1. [all …]
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/protobufs/ |
D | spvtoolsfuzz.proto | 302 // A series of pairs of fresh ids, one per access chain index, for the results 356 // A fresh id for the new merge block. 359 // A fresh id for the new block where the actual instruction is 366 // A fresh id for the result id of the instruction (the original 370 // A fresh id for the new block where the placeholder instruction 374 // A fresh id for the placeholder instruction. 420 // A fresh id for a boolean OpPhi whose value will be true iff the function 427 // A fresh id that will get the value being returned, if the function is 444 // A fresh id into which the loop limiter's current value can be loaded. 447 // A fresh id that can be used to increment the loaded value by 1. [all …]
|
/external/llvm-project/openmp/runtime/src/ |
D | extractExternal.cpp | 404 set<int> fresh[2]; in findRequiredExternal() local 409 fresh[cur].insert(i); in findRequiredExternal() 412 for (set<int>::iterator it = fresh[cur].begin(); it != fresh[cur].end(); in findRequiredExternal() 421 fresh[1 - cur].insert(i); in findRequiredExternal() 427 fresh[cur].clear(); in findRequiredExternal()
|
/external/python/cpython3/Lib/test/ |
D | test_datetime.py | 9 pure_tests = import_fresh_module(TESTS, fresh=['datetime', '_strptime'], 11 fast_tests = import_fresh_module(TESTS, fresh=['datetime',
|
D | test_lib2to3.py | 5 load_tests = import_fresh_module('lib2to3.tests', fresh=['lib2to3']).load_tests
|
D | test_xml_etree_c.py | 10 fresh=['_elementtree']) 12 fresh=['_elementtree', 'xml.etree'],
|
/external/freetype/src/raster/ |
D | ftraster.c | 505 Bool fresh; /* signals a fresh new profile which */ member 700 ras.fresh = TRUE; in New_Profile() 1080 if ( ras.fresh ) in Line_Up() 1083 ras.fresh = FALSE; in Line_Up() 1167 Bool result, fresh; in Line_Down() local 1170 fresh = ras.fresh; in Line_Down() 1174 if ( fresh && !ras.fresh ) in Line_Down() 1262 if ( ras.fresh ) in Bezier_Up() 1265 ras.fresh = FALSE; in Bezier_Up() 1354 Bool result, fresh; in Bezier_Down() local [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | GIT-INFO | 8 On *nix-like systems, run the ./buildconf script first to generate a fresh
|
/external/libwebsockets/lib/abstract/ |
D | abstract.c | 174 goto fresh; in lws_abs_bind_and_create_instance() 192 fresh: in lws_abs_bind_and_create_instance()
|
/external/python/cpython2/Tools/buildbot/ |
D | build.bat | 7 @rem If you need the buildbots to start fresh (such as when upgrading to
|
/external/python/cpython3/Tools/buildbot/ |
D | build.bat | 6 @rem If you need the buildbots to start fresh (such as when upgrading to
|
/external/python/cpython2/Doc/library/ |
D | pprint.rst | 69 ... ('parrot', ('fresh fruit',)))))))) 212 ... ('parrot', ('fresh fruit',)))))))) 219 ('knights', ('ni', ('dead', ('parrot', ('fresh fruit',)))))))), 233 ('ni', ('dead', ('parrot', ('fresh fruit',)))))))),
|
D | test.rst | 405 .. function:: import_fresh_module(name, fresh=(), blocked=(), deprecated=False) 407 This function imports and returns a fresh copy of the named Python module 412 *fresh* is an iterable of additional module names that are also removed 419 The named module and any modules named in the *fresh* and *blocked* 421 ``sys.modules`` when the fresh import is complete. 436 c_warnings = import_fresh_module('warnings', fresh=['_warnings'])
|
/external/libcups/vcnet/regex/ |
D | engine.c | 43 states fresh; /* states for a fresh start */ member 116 SETUP(m->fresh); 633 register states fresh = m->fresh; local 645 ASSIGN(fresh, st); 652 if (EQ(st, fresh)) 694 ASSIGN(st, fresh);
|
/external/llvm-project/llvm/test/Other/ |
D | optimization-remarks-invalidation.ll | 17 ; Check that invalidating BFI computes a fresh emitter. 23 ; Check that invalidating BFI desn't compute a fresh emitter when we don't
|
/external/python/cpython3/Lib/test/test_json/ |
D | __init__.py | 9 cjson = support.import_fresh_module('json', fresh=['_json'])
|
/external/toolchain-utils/bestflags/ |
D | README.md | 6 it, gather results and prepare a fresh batch of flags to repeat the process. The
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | util.py | 57 fresh = ('importlib',) if '.' in module_name else () 59 source = support.import_fresh_module(module_name, fresh=fresh,
|
/external/python/cpython2/Lib/json/tests/ |
D | __init__.py | 10 cjson = test_support.import_fresh_module('json', fresh=['_json'])
|
/external/tensorflow/tensorflow/java/src/gen/ |
D | gen_ops.bzl | 26 gen_cmds = ["rm -rf $(@D)"] # Always start from fresh when generating source files
|
/external/autotest/server/site_tests/debugd_DevTools/ |
D | control | 30 - May require installing a fresh test image.
|