/external/toolchain-utils/bestflags/ |
D | testing_batch.py | 277 def _TestAlgorithm(cost_func, specs, generations, best_result): argument 299 args=(set(), generations, output_queue, input_queue)) 363 generations = [HillClimbingBestBranch(generation_tasks, set([]), specs)] 368 _TestAlgorithm('sum(values[0:len(values)])', specs, generations, 0) 379 generations = [HillClimbingBestBranch(generation_tasks, set([]), specs)] 384 _TestAlgorithm(cost_function, specs, generations, cost) 403 generations = [GAGeneration(generation_tasks, set([]), 0)] 406 _TestAlgorithm('sum(values[0:len(values)])', specs, generations, -1) 408 _TestAlgorithm(cost_func, specs, generations, -1) 425 generations = _GenerateAllIterativeEliminationTasks(specs) [all …]
|
D | steering_test.py | 79 generations = [] 97 generations.insert(0, current_generation) 118 while generations: 119 generation = generations.pop(0)
|
D | steering.py | 14 def Steering(cache, generations, input_queue, result_queue): argument 45 waiting = generations 53 for generation in generations:
|
D | example_algorithms.py | 123 generations = [GAGeneration(generation_tasks, set([]), 0)] 126 _StartExperiment(num_builders, num_testers, generations) 147 def _StartExperiment(num_builders, num_testers, generations): argument 176 args=(set([]), generations, test_steering, steering_build))
|
/external/python/cpython2/Modules/ |
D | gcmodule.c | 40 #define GEN_HEAD(n) (&generations[n].head) 43 static struct gc_generation generations[NUM_GENERATIONS] = { variable 900 generations[generation+1].count += 1; in collect() 902 generations[i].count = 0; in collect() 1039 if (generations[i].count > generations[i].threshold) { in collect_generations() 1173 &generations[0].threshold, in gc_set_thresh() 1174 &generations[1].threshold, in gc_set_thresh() 1175 &generations[2].threshold)) in gc_set_thresh() 1179 generations[i].threshold = generations[2].threshold; in gc_set_thresh() 1195 generations[0].threshold, in gc_get_thresh() [all …]
|
/external/python/cpython3/Modules/ |
D | gcmodule.c | 57 #define GEN_HEAD(n) (&_PyRuntime.gc.generations[n].head) 64 #define _GEN_HEAD(n) (&state->generations[n].head) in _PyGC_Initialize() 65 struct gc_generation generations[NUM_GENERATIONS] = { in _PyGC_Initialize() local 72 state->generations[i] = generations[i]; in _PyGC_Initialize() 831 _PyRuntime.gc.generations[generation+1].count += 1; in collect() 833 _PyRuntime.gc.generations[i].count = 0; in collect() 1043 if (_PyRuntime.gc.generations[i].count > _PyRuntime.gc.generations[i].threshold) { in collect_generations() 1188 &_PyRuntime.gc.generations[0].threshold, in gc_set_thresh() 1189 &_PyRuntime.gc.generations[1].threshold, in gc_set_thresh() 1190 &_PyRuntime.gc.generations[2].threshold)) in gc_set_thresh() [all …]
|
/external/v8/src/ |
D | compilation-cache.h | 26 CompilationSubCache(Isolate* isolate, int generations) in CompilationSubCache() argument 28 generations_(generations) { in CompilationSubCache() 29 tables_ = NewArray<Object*>(generations); in CompilationSubCache() 63 inline int generations() { return generations_; } in generations() function 137 CompilationCacheRegExp(Isolate* isolate, int generations) in CompilationCacheRegExp() argument 138 : CompilationSubCache(isolate, generations) { } in CompilationCacheRegExp()
|
D | compilation-cache.cc | 85 for (int generation = 0; generation < generations(); generation++) { in Remove() 138 DCHECK_EQ(generations(), 1); in Lookup() 193 DCHECK_EQ(generations(), 1); in Lookup() 228 for (generation = 0; generation < generations(); generation++) { in Lookup()
|
/external/clang/test/CodeGen/ |
D | 2008-08-07-AlignPadding1.c | 21 #define GEN_HEAD(n) (&generations[n].head) 27 struct gc_generation generations[3] = { variable
|
D | union-init.c | 23 #define GEN_HEAD(n) (&generations[n].head) 26 struct gc_generation generations[NUM_GENERATIONS] = { variable
|
/external/ImageMagick/MagickCore/ |
D | log.c | 123 generations, member 813 (void) FormatLocaleFile(file,"%9g ",(double) log_info[i]->generations); in ListLogInfo() 1091 if (log_info->generations == 0) in TranslateEvent() 1098 log_info->generations)); in TranslateEvent() 1228 if (log_info->generations == 0) in TranslateFilename() 1235 log_info->generations)); in TranslateFilename() 1612 log_info->generations=(~0UL); in LoadLogCache() 1615 log_info->generations=StringToUnsignedLong(token); in LoadLogCache()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_CudnnRNNCanonicalToParams.pbtxt | 17 generations. 20 generations.
|
D | api_def_CudnnRNNParamsToCanonical.pbtxt | 20 generations. 23 generations.
|
D | api_def_CudnnRNN.pbtxt | 26 generations. So it is a good idea to save and restore
|
D | api_def_CudnnRNNV2.pbtxt | 27 generations. So it is a good idea to save and restore
|
D | api_def_CudnnRNNBackprop.pbtxt | 25 generations. So it is a good idea to save and restore
|
D | api_def_CudnnRNNV3.pbtxt | 30 generations. So it is a good idea to save and restore
|
D | api_def_CudnnRNNBackpropV2.pbtxt | 28 generations. So it is a good idea to save and restore
|
D | api_def_CudnnRNNBackpropV3.pbtxt | 30 generations. So it is a good idea to save and restore
|
/external/python/cpython3/Include/internal/ |
D | mem.h | 120 struct gc_generation generations[NUM_GENERATIONS]; member
|
/external/u-boot/drivers/pci/ |
D | Kconfig | 87 Enable support for the PCIe controller found on some generations of 98 which can be used on some generations of Xilinx FPGAs.
|
/external/ImageMagick/Magick++/ |
D | README | 13 pointer) semantics so it is trivial to support multiple generations of an
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2001-04-16-DynamicCompilation.txt | 38 body of legacy code that was compiled for previous generations and will
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-04-16-DynamicCompilation.txt | 38 body of legacy code that was compiled for previous generations and will
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2001-04-16-DynamicCompilation.txt | 38 body of legacy code that was compiled for previous generations and will
|