/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | CalledValuePropagation.cpp | 173 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) override { 176 return visitCallSite(cast<CallInst>(&I), ChangedValues, SS); 178 return visitCallSite(cast<InvokeInst>(&I), ChangedValues, SS); 180 return visitLoad(*cast<LoadInst>(&I), ChangedValues, SS); 182 return visitReturn(*cast<ReturnInst>(&I), ChangedValues, SS); 184 return visitSelect(*cast<SelectInst>(&I), ChangedValues, SS); 186 return visitStore(*cast<StoreInst>(&I), ChangedValues, SS); 188 return visitInst(I, ChangedValues, SS); 244 SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) { in visitReturn() 251 MergeValues(SS in visitReturn() 242 visitReturn(ReturnInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitReturn() argument 258 visitCallSite(CallSite CS, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitCallSite() argument 303 visitSelect(SelectInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitSelect() argument 316 visitLoad(LoadInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitLoad() argument 332 visitStore(StoreInst &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitStore() argument 346 visitInst(Instruction &I, DenseMap<CVPLatticeKey, CVPLatticeVal> &ChangedValues, SparseSolver<CVPLatticeKey, CVPLatticeVal> &SS) visitInst() argument [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/rands/seeding/ |
H A D | rand_vms.c | 394 0, 0, 0, 0, 0)) != SS$_NORMAL) { in data_collect_method() 399 != SS$_NORMAL) { in data_collect_method() 404 != SS$_NORMAL) { in data_collect_method() 409 != SS$_NORMAL) { in data_collect_method() 417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) { in data_collect_method() 422 != SS$_NORMAL) { in data_collect_method() 426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method() 430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method() 435 != SS$_NORMAL) { in data_collect_method() 439 if ((status = sys$synch(efn, &iosb)) != SS in data_collect_method() [all...] |
/third_party/openssl/providers/implementations/rands/seeding/ |
H A D | rand_vms.c | 394 0, 0, 0, 0, 0)) != SS$_NORMAL) { in data_collect_method() 399 != SS$_NORMAL) { in data_collect_method() 404 != SS$_NORMAL) { in data_collect_method() 409 != SS$_NORMAL) { in data_collect_method() 417 if ((status = lib$get_ef(&efn)) != SS$_NORMAL) { in data_collect_method() 422 != SS$_NORMAL) { in data_collect_method() 426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method() 430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method() 435 != SS$_NORMAL) { in data_collect_method() 439 if ((status = sys$synch(efn, &iosb)) != SS in data_collect_method() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveVariables.cpp | 263 for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS) in HandlePhysRegUse() 264 Processed.insert(*SS); in HandlePhysRegUse() 353 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); SS.isValid(); in HandlePhysRegKill() 354 ++SS) in HandlePhysRegKill() 355 PartUses.insert(*SS); in HandlePhysRegKill() 390 for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); in HandlePhysRegKill() 391 SS in HandlePhysRegKill() [all...] |
H A D | StackSlotColoring.cpp | 334 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local 337 SlotMapping[SS] = NewSS; in ColorSlots() 338 RevMap[NewSS].push_back(SS); in ColorSlots() 341 Changed |= (SS != NewSS); in ColorSlots() 347 int SS = Register::stackSlot2Index(li->reg); in ColorSlots() local 348 li->weight = SlotWeights[SS]; in ColorSlots() 363 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) { in ColorSlots() 364 int NewFI = SlotMapping[SS]; in ColorSlots() [all...] |
H A D | VirtRegMap.cpp | 96 int SS = MF->getFrameInfo().CreateSpillStackObject(Size, Align); in createSpillSlot() local 98 return SS; in createSpillSlot() 127 void VirtRegMap::assignVirt2StackSlot(Register virtReg, int SS) { in assignVirt2StackSlot() argument 131 assert((SS >= 0 || in assignVirt2StackSlot() 132 (SS >= MF->getFrameInfo().getObjectIndexBegin())) && in assignVirt2StackSlot() 134 Virt2StackSlotMap[virtReg.id()] = SS; in assignVirt2StackSlot()
|
/third_party/openssl/test/ |
H A D | stack_test.c | 32 } SS; typedef 41 DEFINE_STACK_OF(SS) 258 static SS *SS_copy(const SS *p) in SS_copy() 260 SS *q = OPENSSL_malloc(sizeof(*q)); in SS_copy() 267 static void SS_free(SS *p) { in SS_free() 273 STACK_OF(SS) *s = sk_SS_new_null(); in test_SS_stack() 274 STACK_OF(SS) *r = NULL; in test_SS_stack() 275 SS *v[10], *p; in test_SS_stack() 289 TEST_info("SS stac in test_SS_stack() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | memchr.c | 5 #define SS (sizeof(size_t)) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
/third_party/musl/src/string/ |
H A D | memchr.c | 5 #define SS (sizeof(size_t)) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
H A D | memchr.c | 5 #define SS (sizeof(size_t)) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | memchr.c | 5 #define SS (sizeof(size_t)) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
/third_party/FatFs/source/ |
H A D | ff.c | 998 mem_set(fs->win, 0, SS(fs)); in sync_fs() 1062 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat() 1063 wc = fs->win[bc++ % SS(fs)]; /* Get 1st byte of the entry */ in get_fat() 1064 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat() 1065 wc |= fs->win[bc % SS(fs)] << 8; /* Merge 2nd byte of the entry */ in get_fat() 1070 if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 2))) != FR_OK) break; in get_fat() 1071 val = ld_word(fs->win + clst * 2 % SS(fs)); /* Simple WORD array */ in get_fat() 1075 if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 4))) != FR_OK) break; in get_fat() 1076 val = ld_dword(fs->win + clst * 4 % SS(fs)) & 0x0FFFFFFF; /* Simple DWORD array but mask out upper 4 bits */ in get_fat() 1114 res = move_window(fs, fs->fatbase + (bc / SS(f in put_fat() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ui/ |
H A D | ui_openssl.c | 469 if (status != SS$_NORMAL) { in open_console() 479 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) in open_console() 503 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in noecho_console() 535 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in echo_console() 562 if (status != SS$_NORMAL) { in close_console()
|
/third_party/openssl/crypto/ui/ |
H A D | ui_openssl.c | 469 if (status != SS$_NORMAL) { in open_console() 479 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) in open_console() 503 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in noecho_console() 535 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in echo_console() 562 if (status != SS$_NORMAL) { in close_console()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFCompileUnit.h | 22 StringRef SS, const DWARFSection &SOS, in DWARFCompileUnit() 25 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS, in DWARFCompileUnit() 19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, const DWARFSection *RS, const DWARFSection *LocSection, StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS, const DWARFSection &LS, bool LE, bool IsDWO, const DWARFUnitVector &UnitVector) DWARFCompileUnit() argument
|
H A D | DWARFTypeUnit.h | 30 StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS, in DWARFTypeUnit() 33 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS, in DWARFTypeUnit() 27 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, const DWARFSection *RS, const DWARFSection *LocSection, StringRef SS, const DWARFSection &SOS, const DWARFSection *AOS, const DWARFSection &LS, bool LE, bool IsDWO, const DWARFUnitVector &UnitVector) DWARFTypeUnit() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCSymbolELF.h | 22 void setSize(const MCExpr *SS) { SymbolSize = SS; } in setSize() argument
|
H A D | MCSymbolWasm.h | 41 void setSize(const MCExpr *SS) { SymbolSize = SS; } in setSize() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | ModuleDebugStream.cpp | 135 for (const auto &SS : subsections()) { in findChecksumsSubsection() 136 if (SS.kind() != DebugSubsectionKind::FileChecksums) in findChecksumsSubsection() 139 if (auto EC = Result.initialize(SS.getRecordData())) in findChecksumsSubsection()
|
H A D | NativeEnumGlobals.cpp | 27 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream()); in NativeEnumGlobals() local 29 CVSymbol S = SS.readRecord(Off); in NativeEnumGlobals()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 374 auto SS = std::make_shared<YAMLChecksumsSubsection>(); in mapping() local 375 Subsection.Subsection = SS; in mapping() 754 for (const auto &SS : Subsections) { in toCodeViewSubsectionList() 756 CVS = SS.Subsection->toCodeViewSubsection(Allocator, SC); in toCodeViewSubsectionList() 892 const DebugSubsectionRecord &SS) { in fromCodeViewSubection() 894 if (auto EC = visitDebugSubsection(SS, V, SC)) in fromCodeViewSubection() 915 for (const auto &SS : Subsections) { in fromDebugS() 916 auto YamlSS = Err(YAMLDebugSubsection::fromCodeViewSubection(SC, SS)); in fromDebugS() 935 for (const auto &SS : Sections) { in initializeStringsAndChecksums() 936 if (SS in initializeStringsAndChecksums() 891 fromCodeViewSubection(const StringsAndChecksumsRef &SC, const DebugSubsectionRecord &SS) fromCodeViewSubection() argument [all...] |
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerSHA1.cpp | 210 std::stringstream SS; in Sha1ToString() local 212 SS << std::hex << std::setfill('0') << std::setw(2) << (unsigned)Sha1[i]; in Sha1ToString() 213 return SS.str(); in Sha1ToString()
|
/third_party/ffmpeg/tests/fate/ |
H A D | vpx.mak | 117 $(foreach SS,$(VP9_CHROMA_SUBSAMPLE),$(eval $(call FATE_VP9_PROFILE_SUITE,04-yuv$(SS),1,,))) 119 $(foreach BD,$(VP9_HIGH_BITDEPTH),$(eval $(foreach SS,$(VP9_CHROMA_SUBSAMPLE),$(eval $(call FATE_VP9_PROFILE_SUITE,20-$(BD)bit-yuv$(SS),3,-pix_fmt yuv$(SS)p$(BD)le -vf scale, SCALE_FILTER)))))
|
/third_party/musl/arch/i386/bits/ |
H A D | reg.h | 19 #define SS 16 macro
|
/third_party/musl/arch/x32/bits/ |
H A D | reg.h | 23 #define SS 20 macro
|