HomeSort by: relevance | last modified time | path
    Searched defs:Key (Results 1 - 25 of 181) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/external/bsd/gnu-efi/dist/lib/
pause.c 9 // Pause until any key is pressed
11 EFI_INPUT_KEY Key;
15 Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
console.c 61 EFI_INPUT_KEY Key;
73 Status = uefi_call_wrapper(ConIn->ReadKeyStroke, 2, ConIn, &Key);
79 if (Key.UnicodeChar == '\n' ||
80 Key.UnicodeChar == '\r') {
84 if (Key.UnicodeChar == '\b') {
92 if (Key.UnicodeChar >= ' ') {
94 InStr[Len] = Key.UnicodeChar;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
TypeName.h 31 StringRef Key = "DesiredTypeName = ";
32 Name = Name.substr(Name.find(Key));
34 Name = Name.drop_front(Key.size());
36 assert(Name.endswith("]") && "Name doesn't end in the substitution key!");
41 StringRef Key = "getTypeName<";
42 Name = Name.substr(Name.find(Key));
44 Name = Name.drop_front(Key.size());
AArch64TargetParser.h 139 StringRef Key;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
InlineSizeEstimatorAnalysis.h 26 static AnalysisKey Key;
ModuleSummaryAnalysis.h 48 static AnalysisKey Key;
BlockFrequencyInfo.h 116 static AnalysisKey Key;
CFLAndersAliasAnalysis.h 97 static AnalysisKey Key;
CFLSteensAliasAnalysis.h 114 static AnalysisKey Key;
FunctionPropertiesAnalysis.h 67 static AnalysisKey Key;
ObjCARCAliasAnalysis.h 71 static AnalysisKey Key;
PostDominators.h 51 static AnalysisKey Key;
ScalarEvolutionAliasAnalysis.h 46 static AnalysisKey Key;
ScopedNoAliasAA.h 56 static AnalysisKey Key;
TypeBasedAliasAnalysis.h 62 static AnalysisKey Key;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
PassInstrumentation.cpp 30 AnalysisKey PassInstrumentationAnalysis::Key;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkCode.h 22 InstructionBenchmarkKey Key;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
FunctionPropertiesAnalysis.cpp 73 AnalysisKey FunctionPropertiesAnalysis::Key;
DominanceFrontier.cpp 79 AnalysisKey DominanceFrontierAnalysis::Key;
PostDominators.cpp 96 AnalysisKey PostDominatorTreeAnalysis::Key;
  /src/usr.sbin/ypserv/yptest/
yptest.c 53 const char *Key = "root";
70 KeyLen = strlen(Key);
71 Status = yp_match(Domain, Map, Key, KeyLen, &Value, &ValLen);
135 yptest_foreach(int status, char *key, int keylen, char *val, int vallen,
142 /* key avslutas med NUL */
144 key[keylen] = '\0';
146 printf("%s %s\n", key, val);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Verifier.h 110 static AnalysisKey Key;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.cpp 67 if (!F.hasFnAttribute("sign-return-address-key")) {
74 const StringRef Key =
75 F.getFnAttribute("sign-return-address-key").getValueAsString();
76 assert(Key.equals_lower("a_key") || Key.equals_lower("b_key"));
77 return Key.equals_lower("b_key");
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAliasAnalysis.h 53 static AnalysisKey Key;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetObjectFile.cpp 92 StringRef Key = MFE.Key->getString();
93 if (Key == "SmallDataLimit") {

Completed in 21 milliseconds

1 2 3 4 5 6 7 8