Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 33) sorted by relevance

12

/system/connectivity/shill/supplicant/
Dwpa_supplicant_unittest.cc41 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 …]
Dwpa_supplicant.cc168 uint32_t* depth) { in ExtractRemoteCertification() argument
178 *depth = properties.GetUint(WPASupplicant::kInterfacePropertyDepth); in ExtractRemoteCertification()
Dwpa_supplicant.h164 uint32_t* depth);
/system/core/libpixelflinger/
Dclear.cpp30 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()
Dpixelflinger.cpp139 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()
Dpicker.cpp122 p |= GGL_BUILD_NEEDS(c->state.mask.depth&1, P_MASK_Z); in ggl_pick()
Dscanline.cpp879 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/
Dcertificate_checker.cc44 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/
Dreport.py114 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
Dcmd_report.cpp302 …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/
Dstrsuftoll.c135 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/
Dsdcard_perf_test.cpp614 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/
Dcycle_breaker.cc156 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()
Dcycle_breaker.h53 bool Circuit(Vertex::Index vertex, Vertex::Index depth);
/system/extras/simpleperf/runtest/
Druntest.py399 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/
Dethernet.cc241 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()
Dmock_ethernet_service.h35 size_t depth));
Dethernet.h128 void CertificationTask(const std::string& subject, uint32_t depth);
/system/connectivity/shill/wifi/
Dmock_wifi_service.h47 size_t depth));
/system/media/camera/docs/
Dmetadata_model.py530 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/
Dggl_context.h290 uint8_t depth;
299 GGLclampx depth;
433 surface_t depth;
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.cpp430 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/
Dservice.cc840 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/
DSERVICES.TXT208 depth: uint32_t: framebuffer depth
213 With the current implementation, depth is always 16, and
/system/core/libpixelflinger/include/pixelflinger/
Dpixelflinger.h298 void (*clearDepthx)(void* c, GGLclampx depth);

12