/system/connectivity/shill/supplicant/ |
D | wpa_supplicant_unittest.cc | 41 uint32_t depth = 0; in TEST_F() local 45 property_map_, &subject, &depth)); in TEST_F() 47 EXPECT_EQ(0, depth); in TEST_F() 53 uint32_t depth = kDepthValue - 1; in TEST_F() local 59 property_map_, &subject, &depth)); in TEST_F() 61 EXPECT_NE(kDepthValue, depth); in TEST_F() 67 uint32_t depth = 0; in TEST_F() local 73 property_map_, &subject, &depth)); in TEST_F() 75 EXPECT_EQ(0, depth); in TEST_F() 82 uint32_t depth = 0; in TEST_F() local [all …]
|
D | wpa_supplicant.cc | 168 uint32_t* depth) { in ExtractRemoteCertification() argument 178 *depth = properties.GetUint(WPASupplicant::kInterfacePropertyDepth); in ExtractRemoteCertification()
|
D | wpa_supplicant.h | 164 uint32_t* depth);
|
/system/core/libpixelflinger/ |
D | clear.cpp | 30 static void ggl_clearDepthx(void* c, GGLclampx depth); 45 c->state.clear.depth = FIXED_ONE; in ggl_init_clear() 111 if (c->state.buffers.depth.format == 0) in ggl_clear() 136 uint32_t depth = fixedToZ(c->state.clear.depth); in ggl_clear() local 137 c->state.clear.depthPacked = (depth<<16)|depth; in ggl_clear() 140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h); in ggl_clear() 157 static void ggl_clearDepthx(void* con, GGLclampx depth) in ggl_clearDepthx() argument 160 c->state.clear.depth = gglClampx(depth); in ggl_clearDepthx()
|
D | pixelflinger.cpp | 139 ggl_set_surface(c, &(c->state.buffers.depth), surface); in ggl_depthBuffer() 141 c->state.buffers.depth.format = GGL_PIXEL_FORMAT_NONE; in ggl_depthBuffer() 532 if (c->state.mask.depth != flag?1:0) { in ggl_depthMask() 533 c->state.mask.depth = flag?1:0; in ggl_depthMask() 671 if (c->state.buffers.depth.format == 0) in ggl_enable_depth_test() 791 c->state.mask.depth = 0; in ggl_init_context()
|
D | picker.cpp | 122 p |= GGL_BUILD_NEEDS(c->state.mask.depth&1, P_MASK_Z); in ggl_pick()
|
D | scanline.cpp | 879 if (c->state.buffers.depth.format) { in scanline() 881 surface_t* cb = &(c->state.buffers.depth); in scanline() 884 uint16_t depth = *p; in scanline() local 887 case GGL_LESS: if (zz<depth) break; goto discard; in scanline() 888 case GGL_EQUAL: if (zz==depth) break; goto discard; in scanline() 889 case GGL_LEQUAL: if (zz<=depth) break; goto discard; in scanline() 890 case GGL_GREATER: if (zz>depth) break; goto discard; in scanline() 891 case GGL_NOTEQUAL: if (zz!=depth) break; goto discard; in scanline() 892 case GGL_GEQUAL: if (zz>=depth) break; goto discard; in scanline() 903 if (c->state.mask.depth) { in scanline()
|
/system/update_engine/common/ |
D | certificate_checker.cc | 44 int depth = X509_STORE_CTX_get_error_depth(x509_ctx); in GetCertificateDigest() local 46 *out_depth = depth; in GetCertificateDigest() 146 int depth; in CheckCertificateChange() local 151 &depth, in CheckCertificateChange() 166 static_cast<int>(server_to_check), depth); in CheckCertificateChange()
|
/system/extras/simpleperf/ |
D | report.py | 114 depth = -1 117 depth = i 118 assert depth != -1 130 if depth == 0: 133 call_tree_stack[depth - 1].add_child(node) 134 call_tree_stack[depth] = node
|
D | cmd_report.cpp | 302 …void PrintCallGraphEntry(size_t depth, std::string prefix, const std::unique_ptr<CallChainNode>& n… 752 void ReportCommand::PrintCallGraphEntry(size_t depth, std::string prefix, in PrintCallGraphEntry() argument 755 if (depth > 20) { in PrintCallGraphEntry() 756 LOG(WARNING) << "truncated callgraph at depth " << depth; in PrintCallGraphEntry() 776 PrintCallGraphEntry(depth + 1, prefix, node->children[i], node->children_period, in PrintCallGraphEntry()
|
/system/core/toolbox/upstream-netbsd/lib/libc/stdlib/ |
D | strsuftoll.c | 135 long long min, long long max, char *ebuf, size_t ebuflen, size_t depth) in __strsuftollx() argument 144 if (depth > 16) { in __strsuftollx() 212 depth + 1); in __strsuftollx()
|
/system/extras/tests/sdcard/ |
D | sdcard_perf_test.cpp | 614 size_t depth = testCase->treeDepth(); in testTraverse() local 615 for (size_t i = 0; i < depth; i++) { in testTraverse() 624 for (size_t j = 0; j < depth; j++) { in testTraverse() 663 int expectedDirs = depth + 1; in testTraverse() 669 int expectedFiles = depth * depth; in testTraverse()
|
/system/update_engine/payload_generator/ |
D | cycle_breaker.cc | 156 bool CycleBreaker::Circuit(Vertex::Index vertex, Vertex::Index depth) { in Circuit() argument 185 if (Circuit(*w, depth + 1)) { in Circuit() 187 if ((depth > kMaxEdgesToConsider) || StackContainsCutEdge()) in Circuit()
|
D | cycle_breaker.h | 53 bool Circuit(Vertex::Index vertex, Vertex::Index depth);
|
/system/extras/simpleperf/runtest/ |
D | runtest.py | 399 depth = -1 402 depth = i 403 assert depth != -1 413 if depth == 0: 417 call_tree_stack[depth - 1].add_child(node) 418 call_tree_stack[depth] = node 420 last_depth = depth
|
/system/connectivity/shill/ethernet/ |
D | ethernet.cc | 241 uint32_t depth; in Certification() local 242 if (WPASupplicant::ExtractRemoteCertification(properties, &subject, &depth)) { in Certification() 245 subject, depth)); in Certification() 386 void Ethernet::CertificationTask(const string& subject, uint32_t depth) { in CertificationTask() argument 389 service_->AddEAPCertification(subject, depth); in CertificationTask()
|
D | mock_ethernet_service.h | 35 size_t depth));
|
D | ethernet.h | 128 void CertificationTask(const std::string& subject, uint32_t depth);
|
/system/connectivity/shill/wifi/ |
D | mock_wifi_service.h | 47 size_t depth));
|
/system/media/camera/docs/ |
D | metadata_model.py | 530 def _construct_inner_namespaces(self, parent, depth=0): argument 539 if len(ins_list) > depth: 540 ins_str = ins_list[depth] 550 self._construct_inner_namespaces(ins, depth + 1) 553 self._construct_entries(ins, depth + 1) 564 def _construct_entries(self, parent, depth=0): argument 570 if len(ins_list) == depth:
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 290 uint8_t depth; 299 GGLclampx depth; 433 surface_t depth;
|
/system/core/libpixelflinger/codeflinger/ |
D | GGLAssembler.cpp | 430 CONTEXT_LOAD(Rs, state.buffers.depth.stride); in build_scanline_prolog() 431 CONTEXT_ADDR_LOAD(zbase, state.buffers.depth.data); in build_scanline_prolog() 765 int depth = scratches.obtain(); in build_depth_test() local 773 LDRH(AL, depth, zbase); // stall in build_depth_test() 774 CMP(AL, depth, reg_imm(z, LSR, 16)); in build_depth_test() 782 MOV(AL, 0, depth, reg_imm(z, LSR, 16)); in build_depth_test() 783 STRH(ic, depth, zbase); in build_depth_test()
|
/system/connectivity/shill/ |
D | service.cc | 840 bool Service::AddEAPCertification(const string& name, size_t depth) { in AddEAPCertification() argument 841 if (depth >= kEAPMaxCertificationElements) { in AddEAPCertification() 843 << " because depth " << depth in AddEAPCertification() 849 if (depth >= remote_certification_.size()) { in AddEAPCertification() 850 remote_certification_.resize(depth + 1); in AddEAPCertification() 851 } else if (name == remote_certification_[depth]) { in AddEAPCertification() 855 remote_certification_[depth] = name; in AddEAPCertification() 859 << depth; in AddEAPCertification()
|
/system/core/adb/ |
D | SERVICES.TXT | 208 depth: uint32_t: framebuffer depth 213 With the current implementation, depth is always 16, and
|
/system/core/libpixelflinger/include/pixelflinger/ |
D | pixelflinger.h | 298 void (*clearDepthx)(void* c, GGLclampx depth);
|