Home
last modified time | relevance | path

Searched refs:HS (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/Utils/
DARMBaseInfo.h34 HS, // Carry set >, ==, or unordered enumerator
54 case HS: return LO; in getOppositeCondition()
55 case LO: return HS; in getOppositeCondition()
74 case ARMCC::HS: return "hs"; in ARMCondCodeToString()
95 .Case("hs", ARMCC::HS) in ARMCondCodeFromString()
96 .Case("cs", ARMCC::HS) in ARMCondCodeFromString()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormatProviders.h133 HexPrintStyle HS;
135 if (consumeHexStyle(Style, HS)) {
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, Digits);
182 HexPrintStyle HS = HexPrintStyle::PrefixUpper;
183 consumeHexStyle(Style, HS);
184 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2);
185 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFormatProviders.h133 HexPrintStyle HS;
135 if (consumeHexStyle(Style, HS)) {
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, Digits);
182 HexPrintStyle HS = HexPrintStyle::PrefixUpper;
183 consumeHexStyle(Style, HS);
184 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2);
185 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/
Dfd5_program.c259 HS = 2, enumerator
273 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages()
323 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages()
379 OUT_RING(ring, A5XX_HLSQ_HS_CONFIG_CONSTOBJECTOFFSET(s[HS].constoff) | in fd5_program_emit()
380 A5XX_HLSQ_HS_CONFIG_SHADEROBJOFFSET(s[HS].instroff) | in fd5_program_emit()
381 COND(s[HS].v, A5XX_HLSQ_HS_CONFIG_ENABLED)); in fd5_program_emit()
397 OUT_RING(ring, A5XX_HLSQ_HS_CNTL_INSTRLEN(s[HS].instrlen) | in fd5_program_emit()
398 COND(s[HS].v && s[HS].v->has_ssbo, A5XX_HLSQ_HS_CNTL_SSBO_ENABLE)); in fd5_program_emit()
411 OUT_RING(ring, A5XX_SP_HS_CONFIG_CONSTOBJECTOFFSET(s[HS].constoff) | in fd5_program_emit()
412 A5XX_SP_HS_CONFIG_SHADEROBJOFFSET(s[HS].instroff) | in fd5_program_emit()
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_program.c143 HS = 2, enumerator
157 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages()
204 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages()
205 s[HS].constoff = s[DS].constoff = s[GS].constoff = s[FS].constoff; in setup_stages()
298 OUT_RING(ring, A4XX_HLSQ_HS_CONTROL_REG_CONSTLENGTH(s[HS].constlen) | in fd4_program_emit()
299 A4XX_HLSQ_HS_CONTROL_REG_CONSTOBJECTOFFSET(s[HS].constoff) | in fd4_program_emit()
300 A4XX_HLSQ_HS_CONTROL_REG_INSTRLENGTH(s[HS].instrlen) | in fd4_program_emit()
301 A4XX_HLSQ_HS_CONTROL_REG_SHADEROBJOFFSET(s[HS].instroff)); in fd4_program_emit()
421 OUT_RING(ring, A4XX_SP_HS_OBJ_OFFSET_REG_CONSTOBJECTOFFSET(s[HS].constoff) | in fd4_program_emit()
422 A4XX_SP_HS_OBJ_OFFSET_REG_SHADEROBJOFFSET(s[HS].instroff)); in fd4_program_emit()
/external/llvm/lib/DebugInfo/PDB/Raw/
DTpiStream.cpp192 auto HS = in reload() local
194 if (!HS) in reload()
195 return HS.takeError(); in reload()
196 StreamReader HSR(**HS); in reload()
219 HashStream = std::move(*HS); in reload()
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMBaseInfo.h32 HS, // Carry set >, ==, or unordered enumerator
52 case HS: return LO; in getOppositeCondition()
53 case LO: return HS; in getOppositeCondition()
72 case ARMCC::HS: return "hs"; in ARMCondCodeToString()
/external/clang/lib/Serialization/
DASTReaderInternals.h253 HeaderSearch *HS; variable
271 HeaderFileInfoTrait(ASTReader &Reader, ModuleFile &M, HeaderSearch *HS, in HeaderFileInfoTrait() argument
273 : Reader(Reader), M(M), HS(HS), FrameworkStrings(FrameworkStrings) { } in HeaderFileInfoTrait()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
DARMBaseInfo.h32 HS, // Carry set >, ==, or unordered enumerator
52 case HS: return LO; in getOppositeCondition()
53 case LO: return HS; in getOppositeCondition()
73 case ARMCC::HS: return "hs"; in ARMCondCodeToString()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DTpiStream.cpp83 auto HS = MappedBlockStream::createIndexedStream( in reload() local
86 BinaryStreamReader HSR(*HS); in reload()
111 HashStream = std::move(HS); in reload()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DDynamicLibrary.inc66 if (HandleSet* HS = IsOpenedHandlesInstance(Handle))
67 HS->Process = nullptr; // Just drop the *Process* handle.
91 HandleSet* HS = IsOpenedHandlesInstance(Handle);
92 if (!HS)
96 if (!HS->Process)
/external/clang/include/clang/Lex/
DDirectoryLookup.h177 const FileEntry *LookupFile(StringRef &Filename, HeaderSearch &HS,
189 StringRef Filename, HeaderSearch &HS,
/external/u-boot/drivers/phy/
DKconfig114 tristate "STMicroelectronics STM32 SoC USB HS PHY driver"
122 used by an HS USB Host controller, and the second one is shared
123 between an HS USB OTG controller and an HS USB Host controller,
/external/clang/lib/Frontend/
DInitHeaderSearch.cpp52 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot) in InitHeaderSearch() argument
53 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot), in InitHeaderSearch()
645 void clang::ApplyHeaderSearchOptions(HeaderSearch &HS, in ApplyHeaderSearchOptions() argument
649 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot); in ApplyHeaderSearchOptions()
671 if (const DirectoryEntry *Dir = HS.getFileMgr().getDirectory(P)) in ApplyHeaderSearchOptions()
672 HS.getModuleMap().setBuiltinIncludeDir(Dir); in ApplyHeaderSearchOptions()
DFrontendActions.cpp292 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); in BeginSourceFileAction() local
293 if (HS.loadModuleMapFile(ModuleMap, IsSystem)) in BeginSourceFileAction()
315 Module = HS.lookupModule(CI.getLangOpts().CurrentModule, in BeginSourceFileAction()
344 HS.getModuleMap().setInferredModuleAllowedBy(Module, ModuleMapForUniquing); in BeginSourceFileAction()
387 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); in ComputeASTConsumerArguments() local
389 HS.getModuleFileName(CI.getLangOpts().CurrentModule, in ComputeASTConsumerArguments()
/external/clang/lib/Lex/
DHeaderSearch.cpp275 HeaderSearch &HS, in LookupFile() argument
302 return HS.getFileAndSuggestModule(TmpDir, IncludeLoc, getDir(), in LookupFile()
308 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath, in LookupFile()
329 Result = HM->LookupFile(Filename, HS.getFileMgr()); in LookupFile()
332 Result = HS.getFileMgr().getFile(Dest); in LookupFile()
402 StringRef Filename, HeaderSearch &HS, SmallVectorImpl<char> *SearchPath, in DoFrameworkLookup() argument
406 FileManager &FileMgr = HS.getFileMgr(); in DoFrameworkLookup()
415 HS.LookupFrameworkCache(Filename.substr(0, SlashPos)); in DoFrameworkLookup()
438 HS.IncrementFrameworkLookupCount(); in DoFrameworkLookup()
519 if (!HS.findUsableModuleForFrameworkHeader( in DoFrameworkLookup()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DDynamicLibrary.cpp153 HandleSet& HS = *OpenedHandles; in getPermanentLibrary() local
158 HS.AddLibrary(Handle, /*IsProcess*/ FileName == nullptr); in getPermanentLibrary()
/external/u-boot/arch/arm/dts/
Domap3-evm-common.dtsi16 /* HS USB Port 2 Power */
27 /* HS USB Host PHY on PORT 2 */
Dzynqmp-zcu100-revC.dts191 label = "HS-I2C2";
197 label = "HS-I2C3";
287 label = "HS-SPI1";
Domap3-beagle-xm-ab.dts12 /* HS USB Port 2 Power enable was inverted with the xM C */
Dstih410-b2260.dts110 label = "HS-I2C2";
117 label = "HS-I2C3";
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/MCTargetDesc/
DARCInfo.h32 HS = 0x6, enumerator
/external/grpc-grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/
D8ec00f45afb097066f47d0bad256a8b856b1efe86 user-agent"bad-client grpc-c/0.12.0.0 (linux) grpc-timeout10HS grpc-timeout5S
/external/libyuv/files/unit_test/
Dcolor_test.cc39 #define TESTCS(TESTNAME, YUVTOARGB, ARGBTOYUV, HS1, HS, HN, DIFF) \ argument
43 ((benchmark_width_ + 1) / 2) * ((benchmark_height_ + HS1) / HS); \
67 for (int y = 0; y < benchmark_height_ - HS1; y += HS) { \
84 if ((benchmark_height_ & 1) && HS == 2) { \
/external/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.h196 HS = 0x2, // Unsigned higher or same >, ==, or unordered enumerator
219 case HS: return "hs"; in getCondCodeName()
253 case HS: return C; // C == 1 in getNZCVToSatisfyCondCode()

12345678910>>...13