| /third_party/skia/third_party/externals/harfbuzz/src/ |
| H A D | hb-serialize.hh | 447 const object_t* child = packed[link.objidx]; in resolve_links() local 448 if (unlikely (!child)) { err (HB_SERIALIZE_ERROR_OTHER); return; } in resolve_links() 451 case Head: offset = child->head - parent->head; break; in resolve_links() 452 case Tail: offset = child->head - parent->tail; break; in resolve_links() 453 case Absolute: offset = (head - start) + (child->head - tail); break; in resolve_links()
|
| /third_party/toybox/porting/liteos_a/toys/posix/ |
| H A D | ls.c | 318 dt = indir->child; in listfiles() 337 for (dtlen = 0, dt = indir->child; dt; dt = dt->next, dtlen++) in listfiles() 589 } else dlist_add_nomalloc((void *)&TT.files->child, (void *)dt); in ls_main() 594 dlist_terminate(TT.files->child); in ls_main() 595 for (dt = TT.files->child; dt; dt = dt->next) dt->parent = TT.files; in ls_main()
|
| /third_party/toybox/toys/posix/ |
| H A D | ls.c | 328 dt = indir->child; in listfiles() 348 for (dtlen = 0, dt = indir->child; dt; dt = dt->next, dtlen++) in listfiles() 601 } else dlist_add_nomalloc((void *)&TT.files->child, (void *)dt); in ls_main() 606 dlist_terminate(TT.files->child); in ls_main() 607 for (dt = TT.files->child; dt; dt = dt->next) dt->parent = TT.files; in ls_main()
|
| /third_party/glslang/glslang/MachineIndependent/ |
| H A D | linkValidate.cpp | 499 for (unsigned int child = 0; child < globals.size() - 1; ++child) { in mergeBodies() 501 TIntermAggregate* body = globals[child]->getAsAggregate(); in mergeBodies() 505 infoSink.info << " " << globals[child]->getAsAggregate()->getName() << "\n"; in mergeBodies() 1431 TGraph::iterator child = callGraph.begin(); in checkCallGraphCycles() local 1432 for (; child != callGraph.end(); ++child) { in checkCallGraphCycles() 1435 if (child->visited) in checkCallGraphCycles() 1438 if (call->callee == child in checkCallGraphCycles() [all...] |
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | cpdtrtst.cpp | 253 UnicodeString child= ct1->getTransliterator(i).getID(); in TestGetSetAdoptTransliterator() local 254 if(child != *(array+i)){ in TestGetSetAdoptTransliterator() 255 errln("Error getTransliterator() failed: Expected->" + *(array+i) + " Got->" + child); in TestGetSetAdoptTransliterator() 257 logln("OK: getTransliterator() passed: Expected->" + *(array+i) + " Got->" + child); in TestGetSetAdoptTransliterator()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| H A D | Region.java | 334 String child = mapping.getString(j); in loadRegionData() 335 Region childRegion = regionIDMap.get(child); in loadRegionData() 338 // Add the child region to the set of regions contained by the parent in loadRegionData() 341 // Set the parent region to be the containing region of the child. in loadRegionData() 357 String child = mapping.getString(j); in loadRegionData() 358 Region childRegion = regionIDMap.get(child); in loadRegionData() 360 // Add the child region to the set of regions contained by the parent in loadRegionData() 362 // Do NOT change the parent of the child region, since groupings are in loadRegionData()
|
| /third_party/ltp/testcases/kernel/fs/inode/ |
| H A D | inode02.c | 116 int count, child; in main() local 188 while ((child = wait(&status)) > 0) { in main() 190 tst_resm(TINFO, "Test %d exited status = %d\n", child, status); in main() 194 child); in main()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | memory-optimizer.cc | 276 // child object into the pretenured object, then the newly allocated in VisitAllocateRaw() 277 // child object also should get pretenured to old space. in VisitAllocateRaw() 282 Node* child = user->InputAt(1); in VisitAllocateRaw() local 283 if (child->opcode() == IrOpcode::kAllocateRaw && in VisitAllocateRaw() 284 AllocationTypeOf(child->op()) == AllocationType::kYoung) { in VisitAllocateRaw() 285 NodeProperties::ChangeOp(child, node->op()); in VisitAllocateRaw()
|
| /third_party/node/deps/v8/src/regexp/experimental/ |
| H A D | experimental-compiler.cc | 59 for (RegExpTree* child : *node->nodes()) { 60 child->Accept(this, nullptr); 377 for (RegExpTree* child : *node->nodes()) { 378 child->Accept(this, nullptr);
|
| /third_party/skia/src/gpu/effects/ |
| H A D | GrMatrixConvolutionEffect.cpp | 270 GrMatrixConvolutionEffect::GrMatrixConvolutionEffect(std::unique_ptr<GrFragmentProcessor> child, in GrMatrixConvolutionEffect() argument 284 this->registerChild(std::move(child), SkSL::SampleUsage::Explicit()); in GrMatrixConvolutionEffect() 349 auto child = GrTextureEffect::MakeSubset(std::move(srcView), kPremul_SkAlphaType, SkMatrix::I(), in Make() local 352 new GrMatrixConvolutionEffect(std::move(child), kernelWrapper, std::move(kernelFP), in Make()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
| H A D | dag.h | 278 // addDependency() adds parent as dependency on child. All dependencies of 279 // child must have completed before child is invoked. 281 DAGNodeBuilder<T> child); 336 DAGNodeBuilder<T> child) { in addDependency() 337 numIns[child.index]++; in addDependency() 338 dag->nodes[parent.index].outs.push_back(child.index); in addDependency() 335 addDependency(DAGNodeBuilder<T> parent, DAGNodeBuilder<T> child) addDependency() argument
|
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
| H A D | bloat.py | 288 children.sort(key=lambda child: -child['data']['$area']) 342 children.sort(key=lambda child: -child['data']['$area'])
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
| H A D | cordz_info.cc | 58 // CordSubstring A (refcount = 5) --> child Flat C (refcount = 2) 59 // CordSubstring B (refcount = 9) --> child Flat C (refcount = 2) 109 // with a refcount of 3 and a child flat with a refcount of 4 will have RepRef 115 // Returns a 'child' RepRef which contains the cumulative reference count of 116 // this instance multiplied by the child's reference count. 117 RepRef Child(const CordRep* child) const { in Child() 118 return RepRef{child, refcount * child->refcount.Get()}; in Child() 172 rep = rep.Child(rep.rep->substring()->child); in CountLinearReps()
|
| /third_party/skia/src/core/ |
| H A D | SkColorFilterPriv.h | 17 // Runs the child filter in a different working color format than usual (premul in 20 static sk_sp<SkColorFilter> WithWorkingFormat(sk_sp<SkColorFilter> child,
|
| /third_party/skia/tools/ |
| H A D | RuntimeBlendUtils.cpp | 23 builder.child("b") = SkBlender::Mode(mode); in GetRuntimeBlendForBlendMode()
|
| /third_party/icu/icu4c/source/common/ |
| H A D | locutil.h | 31 static UBool isFallbackOf(const UnicodeString& root, const UnicodeString& child);
|
| /third_party/alsa-lib/include/ |
| H A D | control_plugin.h | 51 snd_config_t *map, snd_ctl_t *child, int mode);
|
| /third_party/node/deps/icu-small/source/common/ |
| H A D | locutil.h | 31 static UBool isFallbackOf(const UnicodeString& root, const UnicodeString& child);
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | locutil.h | 31 static UBool isFallbackOf(const UnicodeString& root, const UnicodeString& child);
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDie.cpp | 611 DWARFDie child = getFirstChild(); 612 if (DumpOpts.ShowChildren && DumpOpts.ChildRecurseDepth > 0 && child) { 616 while (child) { 617 child.dump(OS, Indent + 2, ChildDumpOpts); 618 child = child.getSibling();
|
| /third_party/skia/third_party/externals/spirv-tools/test/opt/ |
| H A D | scalar_analysis.cpp | 126 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 128 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 249 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 252 // analysis.GetNodeFromInstruction(child->unique_id()); in TEST_F() 254 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 365 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 368 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
| H A D | scalar_analysis.cpp | 126 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 128 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 249 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 252 // analysis.GetNodeFromInstruction(child->unique_id()); in TEST_F() 254 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 365 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 368 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F()
|
| /third_party/spirv-tools/test/opt/ |
| H A D | scalar_analysis.cpp | 122 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 124 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 245 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 248 // analysis.GetNodeFromInstruction(child->unique_id()); in TEST_F() 250 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F() 361 Instruction* child = context->get_def_use_mgr()->GetDef( in TEST_F() local 364 const SENode* node = analysis.AnalyzeInstruction(child); in TEST_F()
|
| /third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
| H A D | ParseHelper.cpp | 3064 TIntermTyped *TParseContext::createUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc, const TType *funcReturnType) in createUnaryMath() argument 3066 if(child == nullptr) in createUnaryMath() 3074 if(child->getBasicType() != EbtBool || in createUnaryMath() 3075 child->isMatrix() || in createUnaryMath() 3076 child->isArray() || in createUnaryMath() 3077 child->isVector()) in createUnaryMath() 3083 if((child->getBasicType() != EbtInt && child->getBasicType() != EbtUInt) || in createUnaryMath() 3084 child->isMatrix() || in createUnaryMath() 3085 child in createUnaryMath() 3109 addUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc) addUnaryMath() argument 3121 addUnaryMathLValue(TOperator op, TIntermTyped *child, const TSourceLoc &loc) addUnaryMathLValue() argument [all...] |
| /third_party/node/deps/npm/node_modules/path-scurry/dist/cjs/ |
| H A D | index.js | 86 // cannot have child entries -- also verify &IFMT is either IFDIR or IFLNK 149 * an LRUCache for storing child entries. 366 p = p.child(part); 389 * Resolves a path portion and returns or creates the child Path. 401 child(pathPart, opts) { 408 // find the child 418 // didn't find it, create provisional child, since it might not 519 * link, or whether it has child entries. 622 * Returns the cached child Path entries array if the entry has been the 842 const child [all...] |