Searched refs:current_depth (Results 1 – 9 of 9) sorted by relevance
/external/ImageMagick/MagickCore/ |
D | attribute.c | 553 *current_depth, in GetImageDepth() local 568 current_depth=(size_t *) AcquireQuantumMemory(number_threads, in GetImageDepth() 569 sizeof(*current_depth)); in GetImageDepth() 570 if (current_depth == (size_t *) NULL) in GetImageDepth() 574 current_depth[i]=1; in GetImageDepth() 583 while (current_depth[id] < MAGICKCORE_QUANTUM_DEPTH) in GetImageDepth() 592 range=GetQuantumRange(current_depth[id]); in GetImageDepth() 606 current_depth[id]++; in GetImageDepth() 609 depth=current_depth[0]; in GetImageDepth() 611 if (depth < current_depth[i]) in GetImageDepth() [all …]
|
/external/f2fs-tools/fsck/ |
D | dir.c | 224 int level = 0, current_depth, bit_pos; in f2fs_add_link() local 248 current_depth = le32_to_cpu(parent->i.i_current_depth); in f2fs_add_link() 250 if (current_depth == MAX_DIR_HASH_DEPTH) { in f2fs_add_link() 257 if (level == current_depth) in f2fs_add_link() 258 ++current_depth; in f2fs_add_link() 300 if (parent->i.i_current_depth != cpu_to_le32(current_depth)) { in f2fs_add_link() 301 parent->i.i_current_depth = cpu_to_le32(current_depth); in f2fs_add_link()
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_scan.c | 59 unsigned current_depth = 0; in tgsi_scan_shader() local 108 current_depth++; in tgsi_scan_shader() 109 info->max_depth = MAX2(info->max_depth, current_depth); in tgsi_scan_shader() 113 current_depth--; in tgsi_scan_shader()
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_context.cpp | 76 [](uint32_t current_depth, RandomGenerator* random_generator) -> bool { in __anonaff695220202() argument 77 double chance = 1.0 / std::pow(3.0, static_cast<float>(current_depth + 1)); in __anonaff695220202()
|
/external/angle/third_party/spirv-tools/src/source/fuzz/ |
D | fuzzer_context.cpp | 82 [](uint32_t current_depth, RandomGenerator* random_generator) -> bool { in __anon1706c4dc0202() argument 83 double chance = 1.0 / std::pow(3.0, static_cast<float>(current_depth + 1)); in __anon1706c4dc0202()
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | fuzzer_context.cpp | 81 [](uint32_t current_depth, RandomGenerator* random_generator) -> bool { in __anon0a4c58e80202() argument 82 double chance = 1.0 / std::pow(3.0, static_cast<float>(current_depth + 1)); in __anon0a4c58e80202()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_object_walker.h | 45 size_t current_depth() const { return current_depth_; } in current_depth() function
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_scan.c | 339 unsigned *current_depth) in scan_instruction() argument 353 (*current_depth)++; in scan_instruction() 354 info->max_depth = MAX2(info->max_depth, *current_depth); in scan_instruction() 358 (*current_depth)--; in scan_instruction() 864 unsigned current_depth = 0; in tgsi_scan_shader() local 903 ¤t_depth); in tgsi_scan_shader()
|
/external/libchrome/base/debug/ |
D | activity_tracker.cc | 639 std::atomic<uint32_t> current_depth; member 730 DCHECK_EQ(0U, header_->current_depth.load(std::memory_order_relaxed)); in ThreadActivityTracker() 776 uint32_t depth = header_->current_depth.load(std::memory_order_relaxed); in PushActivity() 783 header_->current_depth.store(depth + 1, std::memory_order_relaxed); in PushActivity() 795 header_->current_depth.store(depth + 1, std::memory_order_release); in PushActivity() 807 DCHECK_LT(id, header_->current_depth.load(std::memory_order_acquire)); in ChangeActivity() 832 header_->current_depth.fetch_sub(1, std::memory_order_relaxed) - 1; in PopActivity() 951 depth = header_->current_depth.load(std::memory_order_acquire); in CreateSnapshot()
|