/external/valgrind/none/tests/amd64/ |
D | bug156404-amd64.stdout.exp | 1 depth 0: r = 1 2 depth 1: r = 1 3 depth 2: r = 1 4 depth 3: r = 1 5 depth 4: r = 1 6 depth 5: r = 1 7 depth 6: r = 1 8 depth 7: r = 1 9 depth 8: r = 1 10 depth 9: r = 1 [all …]
|
/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | sample_service_unittest.cc | 157 void PrintSpacer(int depth) { in PrintSpacer() argument 158 for (int i = 0; i < depth; ++i) in PrintSpacer() 162 void Print(int depth, const char* name, bool value) { in Print() argument 163 PrintSpacer(depth); in Print() 167 void Print(int depth, const char* name, int32_t value) { in Print() argument 168 PrintSpacer(depth); in Print() 172 void Print(int depth, const char* name, uint8_t value) { in Print() argument 173 PrintSpacer(depth); in Print() 178 void Print(int depth, in Print() argument 181 PrintSpacer(depth); in Print() [all …]
|
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/ |
D | MessagePatternUtilDemo.java | 29 private static final void printMessage(MessagePatternUtil.MessageNode msg, int depth) { in printMessage() argument 30 String indent = manySpaces.substring(0, depth * 2); in printMessage() 38 printArg((MessagePatternUtil.ArgNode)contents, depth); in printMessage() local 47 private static final void printArg(MessagePatternUtil.ArgNode arg, int depth) { in printArg() argument 48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»"); in printArg() 63 printComplexArgStyle(arg.getComplexStyle(), depth + 1); in printArg() local 69 int depth) { in printComplexArgStyle() argument 71 System.out.println(manySpaces.substring(0, depth * 2) + "offset: " + style.getOffset()); in printComplexArgStyle() 73 String indent = manySpaces.substring(0, depth * 2); in printComplexArgStyle() 94 printMessage(variant.getMessage(), depth + 1); in printComplexArgStyle() local [all …]
|
/external/autotest/client/site_tests/graphics_dEQP/expectations/mali-t760/ |
D | dEQP-GLES3.performance.Flaky.bz2 | ... used_buffer_and_unrelated_upload.draw_elements_upload_indices_partial_with_map_buffer_range
2dEQP-GLES3.performance.depth.cull_efficiency.frag_depth.occluded_dynamic
3dEQP-GLES3 ... |
/external/compiler-rt/test/asan/TestCases/ |
D | heavy_uar_test.cc | 27 void RecursiveFunctionWithStackFrame(int depth) { in RecursiveFunctionWithStackFrame() argument 28 if (depth <= 0) return; in RecursiveFunctionWithStackFrame() 30 x[0] = depth; in RecursiveFunctionWithStackFrame() 32 RecursiveFunctionWithStackFrame<kFrameSize>(depth - 1); in RecursiveFunctionWithStackFrame() 43 int depth = argc >= 3 ? atoi(argv[2]) : 500; in main() local 45 RecursiveFunctionWithStackFrame<10>(depth); in main() 46 RecursiveFunctionWithStackFrame<100>(depth); in main() 47 RecursiveFunctionWithStackFrame<500>(depth); in main() 48 RecursiveFunctionWithStackFrame<1024>(depth); in main() 49 RecursiveFunctionWithStackFrame<2000>(depth); in main() [all …]
|
/external/llvm/tools/llvm-c-test/ |
D | calc.c | 45 int depth = 0; in build_from_tokens() local 58 if (depth < 2) { in build_from_tokens() 63 stack[depth - 2] = LLVMBuildBinOp(builder, op_to_opcode(tok), in build_from_tokens() 64 stack[depth - 1], stack[depth - 2], ""); in build_from_tokens() 65 depth--; in build_from_tokens() 72 if (depth < 1) { in build_from_tokens() 77 off = LLVMBuildGEP(builder, param, &stack[depth - 1], 1, ""); in build_from_tokens() 78 stack[depth - 1] = LLVMBuildLoad(builder, off, ""); in build_from_tokens() 91 if (depth >= MAX_DEPTH) { in build_from_tokens() 96 stack[depth++] = LLVMConstInt(LLVMInt64Type(), val, 1); in build_from_tokens() [all …]
|
/external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/ |
D | copy_assign.pass.cpp | 44 while (it.depth() != 1) { in TEST_SUITE() 48 TEST_ASSERT(it.depth() == 1); in TEST_SUITE() 67 while (it.depth() != 2) { in createDifferentInterestingIterator() 71 TEST_ASSERT(it.depth() == 2); in createDifferentInterestingIterator() 92 TEST_CHECK(to.depth() == from.depth()); in TEST_CASE() 117 TEST_CHECK(it2.depth() != it.depth()); in TEST_CASE() 124 TEST_CHECK(it2.depth() == it.depth()); in TEST_CASE() 144 TEST_CHECK(it2.depth() == it.depth()); in TEST_CASE() 153 TEST_CHECK(it2.depth() == it.depth()); in TEST_CASE()
|
D | move_assign.pass.cpp | 50 while (it.depth() != 1) { in TEST_SUITE() 54 TEST_ASSERT(it.depth() == 1); in TEST_SUITE() 72 while (it.depth() != 2) { in createDifferentInterestingIterator() 76 TEST_ASSERT(it.depth() == 2); in createDifferentInterestingIterator() 101 TEST_CHECK(to.depth() == from_copy.depth()); in TEST_CASE() 129 TEST_CHECK(it2.depth() != it.depth()); in TEST_CASE() 136 TEST_CHECK(it2.depth() == it_copy.depth()); in TEST_CASE() 157 TEST_CHECK(it2.depth() == it.depth()); in TEST_CASE() 163 TEST_CHECK(it2.depth() == it.depth()); in TEST_CASE()
|
/external/libdivsufsort/lib/ |
D | sssort.c | 143 saidx_t depth) { in ss_compare() argument 146 for(U1 = T + depth + *p1, in ss_compare() 147 U2 = T + depth + *p2, in ss_compare() 168 saidx_t *first, saidx_t *last, saidx_t depth) { in ss_insertionsort() argument 174 for(t = *i, j = i + 1; 0 < (r = ss_compare(T, PA + t, PA + *j, depth));) { in ss_insertionsort() 292 saidx_t *first, saidx_t *last, saidx_t depth) { in ss_partition() argument 296 for(; (++a < b) && ((PA[*a] + depth) >= (PA[*a + 1] + 1));) { *a = ~*a; } in ss_partition() 297 for(; (a < --b) && ((PA[*b] + depth) < (PA[*b + 1] + 1));) { } in ss_partition() 312 saidx_t depth) { in ss_mintrosort() argument 326 if(1 < (last - first)) { ss_insertionsort(T, PA, first, last, depth); } in ss_mintrosort() [all …]
|
/external/libpng/contrib/gregbook/ |
D | rpng-x.c | 143 static int depth; variable 455 depth = DisplayPlanes(display, screen); in rpng_x_create_window() 464 if (/* depth != 8 && */ depth != 16 && depth != 24 && depth != 32) { in rpng_x_create_window() 467 depth); in rpng_x_create_window() 471 XMatchVisualInfo(display, screen, depth, in rpng_x_create_window() 472 (depth == 8)? PseudoColor : TrueColor, &visual_info); in rpng_x_create_window() 475 if (depth != 16 && depth != 24 && depth != 32) { in rpng_x_create_window() 479 depth)) in rpng_x_create_window() 483 visual_info.depth = 24; in rpng_x_create_window() 489 " 24-bit visuals found\n", depth); in rpng_x_create_window() [all …]
|
/external/dtc/libfdt/ |
D | fdt.c | 162 int fdt_next_node(const void *fdt, int offset, int *depth) in fdt_next_node() argument 181 if (depth) in fdt_next_node() 182 (*depth)++; in fdt_next_node() 186 if (depth && ((--(*depth)) < 0)) in fdt_next_node() 192 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() 204 int depth = 0; in fdt_first_subnode() local 206 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode() 207 if (offset < 0 || depth != 1) in fdt_first_subnode() 215 int depth = 1; in fdt_next_subnode() local 222 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode() [all …]
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | Trie.java | 57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) { in Trie() argument 58 this(elements, depth, 0, elements.size()); in Trie() 70 List<Map.Entry<String, Integer>> elements, int depth, in Trie() argument 72 this.terminal = depth == elements.get(start).getKey().length(); in Trie() 89 char ch = elements.get(i).getKey().charAt(depth); in Trie() 100 char lastCh = elements.get(start).getKey().charAt(depth); in Trie() 102 char ch = elements.get(i).getKey().charAt(depth); in Trie() 106 elements, depth + 1, childStart, i); in Trie() 112 children[childIndex++] = new Trie(elements, depth + 1, childStart, end); in Trie() 179 private void toStringBuilder(int depth, StringBuilder sb) { in toStringBuilder() argument [all …]
|
/external/proguard/src/proguard/shrink/ |
D | ShortestUsageMark.java | 40 private final int depth; field in ShortestUsageMark 53 this.depth = 0; in ShortestUsageMark() 88 this.depth = previousUsageMark.depth + cost; in ShortestUsageMark() 104 this.depth = otherUsageMark.depth; in ShortestUsageMark() 134 return this.depth < otherUsageMark.depth; in isShorter() 178 return "certain=" + certain + ", depth="+depth+": " + in toString()
|
/external/dtc/tests/ |
D | supernode_atdepth_offset.c | 33 int depth = 0; in path_depth() local 42 depth++; in path_depth() 48 return depth; in path_depth() 51 static int path_prefix(const char *path, int depth) in path_prefix() argument 59 if (depth == 0) in path_prefix() 63 for (i = 0; i < depth; i++) in path_prefix() 70 int depth) in check_supernode_atdepth() argument 77 pathprefixlen = path_prefix(path, depth); in check_supernode_atdepth() 83 path, pdepth, depth, superpath); in check_supernode_atdepth() 94 depth, &nodedepth); in check_supernode_atdepth()
|
/external/skia/fuzz/ |
D | FuzzCanvas.cpp | 239 static sk_sp<SkPicture> make_fuzz_picture(Fuzz*, int depth); 241 static sk_sp<SkColorFilter> make_fuzz_colorfilter(Fuzz* fuzz, int depth) { in make_fuzz_colorfilter() argument 242 if (depth <= 0) { in make_fuzz_colorfilter() 257 sk_sp<SkColorFilter> outer = make_fuzz_colorfilter(fuzz, depth - 1); in make_fuzz_colorfilter() 258 sk_sp<SkColorFilter> inner = make_fuzz_colorfilter(fuzz, depth - 1); in make_fuzz_colorfilter() 317 static sk_sp<SkShader> make_fuzz_shader(Fuzz* fuzz, int depth) { in make_fuzz_shader() argument 328 if (depth <= 0) { in make_fuzz_shader() 355 shader1 = make_fuzz_shader(fuzz, depth - 1); // limit recursion. in make_fuzz_shader() 359 shader1 = make_fuzz_shader(fuzz, depth - 1); // limit recursion. in make_fuzz_shader() 360 colorFilter = make_fuzz_colorfilter(fuzz, depth - 1); in make_fuzz_shader() [all …]
|
/external/v8/src/ |
D | d8.js | 26 function Stringify(x, depth) { argument 27 if (depth === undefined) 28 depth = stringifyDepthLimit; 29 else if (depth === 0) 32 return StringifyProxy(x, depth); 51 {}.hasOwnProperty.call(x, i) ? Stringify(x[i], depth - 1) : ""); 68 props.push(name + ": " + Stringify(desc.value, depth - 1)); 85 function StringifyProxy(proxy, depth) { argument 91 return '[' + proxy_type + ' Proxy ' + Stringify(info_object, depth-1) + ']';
|
/external/mesa3d/src/mesa/main/ |
D | texstorage.c | 105 GLint *width, GLint *height, GLint *depth) in next_mipmap_level_size() argument 115 if ((*depth > 1) && (target != GL_TEXTURE_2D_ARRAY)) { in next_mipmap_level_size() 116 *depth /= 2; in next_mipmap_level_size() 129 GLsizei width, GLsizei height, GLsizei depth) in setup_texstorage() argument 134 GLint level, levelWidth = width, levelHeight = height, levelDepth = depth; in setup_texstorage() 140 assert(depth > 0); in setup_texstorage() 174 width, height, depth)) { in setup_texstorage() 244 GLsizei width, GLsizei height, GLsizei depth) in tex_storage_error_check() argument 297 if (width < 1 || height < 1 || depth < 1) { in tex_storage_error_check() 304 if (levels < 1 || height < 1 || depth < 1) { in tex_storage_error_check() [all …]
|
/external/ImageMagick/coders/ |
D | fits.c | 147 switch (image->depth >> 3) in GetFITSPixel() 202 static inline double GetFITSPixelRange(const size_t depth) in GetFITSPixelRange() argument 204 return((double) ((MagickOffsetType) GetQuantumRange(depth))); in GetFITSPixelRange() 422 image->depth=(size_t) (fits_info.bits_per_pixel < 0 ? -1 : 1)* in ReadFITSImage() 459 if ((image->depth == 16) || (image->depth == 32) || in ReadFITSImage() 460 (image->depth == 64)) in ReadFITSImage() 461 SetFITSUnsignedPixels(1,image->depth,image->endian, in ReadFITSImage() 661 image->depth=GetImageQuantumDepth(image,MagickFalse); in WriteFITSImage() 673 image->depth)); in WriteFITSImage() 699 image->depth > 8 ? GetFITSPixelRange(image->depth)/2.0 : 0.0); in WriteFITSImage() [all …]
|
D | ipl.c | 80 depth, member 169 image->depth = ipl->depth; in SetHeaderFromIPL() 263 ipl_info.depth=8; in ReadIPLImage() 267 ipl_info.depth=16; in ReadIPLImage() 271 ipl_info.depth=16; in ReadIPLImage() 275 ipl_info.depth=32; in ReadIPLImage() 278 case 4: ipl_info.depth=32; in ReadIPLImage() 282 ipl_info.depth=8; in ReadIPLImage() 286 ipl_info.depth=16; in ReadIPLImage() 290 ipl_info.depth=64; in ReadIPLImage() [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
D | namedict.py | 35 depth = len(key) 36 if depth > self.max_depth: 37 self.max_depth = depth 51 depth = len(name) 52 if depth > self.max_depth: 53 depth = self.max_depth 54 for i in xrange(-depth, 0):
|
/external/swiftshader/src/OpenGL/common/ |
D | Image.cpp | 404 …set, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, int inputPitch, i… in LoadImageData() argument 406 for(int z = 0; z < depth; ++z) in LoadImageData() 1223 …set, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GL… in loadImageData() argument 1255 …LoadImageData<Bytes_1>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1264 …LoadImageData<Bytes_2>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1271 …LoadImageData<ByteRGB>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1280 …LoadImageData<Bytes_4>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1297 …LoadImageData<Bytes_1>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1306 …LoadImageData<Bytes_2>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, g… in loadImageData() 1313 …LoadImageData<UByteRGB>(xoffset, yoffset, zoffset, width, height, depth, inputPitch, inputHeight, … in loadImageData() [all …]
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_hyperz.c | 46 switch (dsa->dsa.depth.func) { in r300_get_hiz_func() 67 unsigned func = dsa->dsa.depth.func; in r300_get_sc_hz_max() 75 unsigned func = dsa->dsa.depth.func; in r300_is_hiz_func_valid() 119 if (dsa->dsa.depth.enabled) { in r300_hiz_allowed() 121 if (dsa->dsa.depth.func == PIPE_FUNC_EQUAL && !r300screen->caps.is_r500) in r300_hiz_allowed() 125 if (dsa->dsa.depth.func == PIPE_FUNC_NOTEQUAL) in r300_hiz_allowed() 173 if (!dsa->dsa.depth.enabled && in r300_update_hyperz() 176 assert(!dsa->dsa.depth.writemask); in r300_update_hyperz() 193 if (dsa->dsa.depth.writemask) { in r300_update_hyperz() 198 DBG(r300, DBG_HYPERZ, "r300: Z-func: %i\n", dsa->dsa.depth.func); in r300_update_hyperz() [all …]
|
/external/eigen/test/ |
D | product_small.cpp | 50 test_lazy_single(int rows, int cols, int depth) in test_lazy_single() argument 52 Matrix<T,Rows,Depth,OA> A(rows,depth); A.setRandom(); in test_lazy_single() 53 Matrix<T,Depth,Cols,OB> B(depth,cols); B.setRandom(); in test_lazy_single() 71 void test_lazy_all_layout(int rows=Rows, int cols=Cols, int depth=Depth) in test_lazy_all_layout() argument 73 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,ColMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 74 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,ColMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 75 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,RowMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 76 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,RowMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 77 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,ColMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() 78 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,ColMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() [all …]
|
/external/ImageMagick/MagickCore/ |
D | attribute.c | 287 depth, in GetImageDepth() local 348 depth=current_depth[0]; in GetImageDepth() 350 if (depth < current_depth[i]) in GetImageDepth() 351 depth=current_depth[i]; in GetImageDepth() 353 return(depth); in GetImageDepth() 371 depth; in GetImageDepth() local 373 for (depth=1; depth < MAGICKCORE_QUANTUM_DEPTH; depth++) in GetImageDepth() 381 range=GetQuantumRange(depth); in GetImageDepth() 386 depth_map[i]=depth; in GetImageDepth() 433 depth=current_depth[0]; in GetImageDepth() [all …]
|
/external/deqp/modules/glshared/ |
D | glsFragmentOpUtil.hpp | 54 float depth[4]; member 60 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++) in Quad() 61 depth[i] = 0.0f; in Quad() 94 float depth[4]; member 100 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++) in IntegerQuad() 101 depth[i] = 0.0f; in IntegerQuad() 108 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++) in IntegerQuad() 109 depth[i] = 0.0f; in IntegerQuad()
|