/external/swiftshader/third_party/LLVM/lib/Support/ |
Host.cpp | 95 static void DetectX86FamilyModel(unsigned EAX, unsigned &Family, 97 Family = (EAX >> 8) & 0xf; // Bits 8 - 11 99 if (Family == 6 || Family == 0xf) { 100 if (Family == 0xf) 101 // Examine extended family ID if family ID is F. 102 Family += (EAX >> 20) & 0xff; // Bits 20 - 27 103 // Examine extended model ID if family ID is 6 or F. 112 unsigned Family = 0 [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type01/ |
MiscSystemManufacturerFunction.c | 54 EFI_STRING Family;
114 Family = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
115 FamilyStrLen = StrLen(Family);
150 UnicodeStrToAsciiStr(Family, OptionalStrStart + ManuStrLen + 1 + PdNameStrLen + 1 + VerStrLen + 1 + SerialNumStrLen + 1 + SKUNumStrLen + 1);
189 if(Family != NULL)
191 FreePool(Family);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
eap_proxy_qmi_oc.mak | 10 # This is supported only in B Family devices.
|
eap_proxy_qmi_oc.mk | 26 # This is supported only in B Family devices.
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/ |
InfSoucesObject.py | 42 # File | Family | TagName | ToolCode | FeatureFlagExpr
147 Family = '', \
152 self.Family = Family
165 def SetFamily(self, Family):
166 self.Family = Family
168 return self.Family
|
/device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/ |
Microcode.h | 45 UINT32 Family:4;
80 /// Extended family, extended model, type, family, model, and stepping
83 /// given extended family, extended model, type, family, model, and
162 /// Extended family, extended model, type, family, model, and stepping
165 /// given extended family, extended model, type, family, model, and
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
InfBuildOptionSectionParser.py | 109 Family = GetSplitValueList(ValueList[0], DT.TAB_COLON_SPLIT, 1)
110 if len(Family) == 2:
111 if not IsValidFamily(Family[0]):
118 if not IsValidBuildOptionName(Family[1]):
125 if len(Family) == 1:
126 if not IsValidBuildOptionName(Family[0]):
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
ztypes_linux_sparc64.go | 172 Family uint16 179 Family uint16 187 Family uint16 192 Family uint16 202 Family uint16 209 Family uint16 215 Family uint16 222 Family uint16 230 Family uint16 238 Family uint1 [all...] |
ztypes_darwin_386.go | 150 Family uint8 158 Family uint8 167 Family uint8 173 Family uint8 184 Family uint8
|
ztypes_darwin_amd64.go | 156 Family uint8 164 Family uint8 173 Family uint8 179 Family uint8 190 Family uint8
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/ |
MiscSystemManufacturerFunction.c | 49 CHAR16 Family[SMBIOS_STRING_MAX_LENGTH];
134 AsciiStrToUnicodeStr ((CHAR8 *) PcdGetPtr(PcdSMBIOSSystemFamily), Family);
135 if (StrLen (Family) > 0) {
137 HiiSetString (mHiiHandle, TokenToUpdate, Family, NULL);
178 // Family will be the 6th optional string following the formatted structure.
180 SmbiosRecord->Family = 6;
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
X86MCTargetDesc.h | 58 void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model);
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
X86Subtarget.cpp | 240 unsigned Family = 0; 242 X86_MC::DetectFamilyModel(EAX, Family, Model); 243 if (IsAMD || (Family == 6 && Model >= 13)) { 248 if (Family == 15 && Model == 26) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
BuildEngine.py | 360 self.RuleDatabase = tdict(True, 4) # {FileExt, ModuleType, Arch, Family : FileBuildRule object}
366 self._RuleInfo = tdict(True, 2) # {toolchain family : {"InputFile": {}, "OutputFile" : [], "Command" : []}}
437 # if there's specific toochain family, 'COMMON' doesn't make sense any more
440 for Family in self._TotalToolChainFamilySet:
441 Input = self._RuleInfo[Family, self._InputFile]
442 Output = self._RuleInfo[Family, self._OutputFile]
443 Command = self._RuleInfo[Family, self._Command]
444 ExtraDependency = self._RuleInfo[Family, self._ExtraDependency]
449 Database[self._FileType, BuildType, Arch, Family] = BuildRule
538 Family = TokenList[1].strip().upper() [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/ |
ModuleObject.py | 220 self.Family = ''
241 def SetFamily(self, Family):
242 self.Family = Family
245 return self.Family
354 self.Family = ''
369 def SetFamily(self, Family):
370 self.Family = Family
373 return self.Family
[all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocChecker.cpp | 69 unsigned Family : 29; // Rest of 32-bit word, currently just an allocation 70 // family. 72 RefState(Kind k, const Stmt *s, unsigned family) 73 : S(s), K(k), Family(family) { 74 assert(family != AF_None); 83 return (AllocationFamily)Family; 88 return K == X.K && S == X.S && Family == X.Family; 91 static RefState getAllocated(unsigned family, const Stmt *s) [all...] |
/external/llvm/lib/Support/ |
Host.cpp | 285 static void detectX86FamilyModel(unsigned EAX, unsigned *Family, 287 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11 289 if (*Family == 6 || *Family == 0xf) { 290 if (*Family == 0xf) 291 // Examine extended family ID if family ID is F. 292 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27 293 // Examine extended model ID if family ID is 6 or F. 299 getIntelProcessorTypeAndSubtype(unsigned int Family, unsigned int Model [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
Host.cpp | 483 static void detectX86FamilyModel(unsigned EAX, unsigned *Family, 485 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11 487 if (*Family == 6 || *Family == 0xf) { 488 if (*Family == 0xf) 489 // Examine extended family ID if family ID is F. 490 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27 491 // Examine extended model ID if family ID is 6 or F. 497 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model [all...] |
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
Host.cpp | 319 static void detectX86FamilyModel(unsigned EAX, unsigned *Family, 321 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11 323 if (*Family == 6 || *Family == 0xf) { 324 if (*Family == 0xf) 325 // Examine extended family ID if family ID is F. 326 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27 327 // Examine extended model ID if family ID is 6 or F. 333 getIntelProcessorTypeAndSubtype(unsigned int Family, unsigned int Model [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
ParserValidate.py | 124 ## Is valid Tool Family or not
126 # @param ToolFamily: A string contain Tool Family need to be judged.
166 ## Is valid family or not
168 # <Family> ::= {"MSFT"} {"GCC"} {"INTEL"} {<Usr>} {"*"}
171 # @param family: The family string need to be validated
173 def IsValidFamily(Family):
174 Family = Family.strip()
175 if Family == '*': [all...] |
/external/syzkaller/vendor/golang.org/x/net/trace/ |
events.go | 48 Families []string // family names 50 Counts [][]int // eventLog count per family/bucket 53 Family string 69 // Count the number of eventLogs in each family for each error age. 72 // TODO(sameer): move this loop under the family lock. 82 data.Family, data.Bucket, ok = parseEventsArgs(req) 86 data.EventLogs = getEventFamily(data.Family).Copy(now, buckets[data.Bucket].MaxErrAge) 130 // NewEventLog returns a new EventLog with the specified family name 132 func NewEventLog(family, title string) EventLog { 135 el.Family, el.Title = family, titl [all...] |
trace.go | 24 The /debug/requests HTTP endpoint organizes the traces by family, 26 for each family. 59 The /debug/events HTTP endpoint organizes the event logs by family and 157 CompletedTraces map[string]*family 161 Family string 212 data.Family, data.Bucket, ok = parseArgs(req) 218 n := data.ActiveTraceCount[data.Family] 219 data.Traces = getActiveTraces(data.Family) 224 if b := lookupBucket(data.Family, data.Bucket); b != nil { 228 if f := getFamily(data.Family, false); f != nil 537 type family struct { type [all...] |
/external/pdfium/core/fpdfapi/page/ |
cpdf_colorspace.h | 45 static CPDF_ColorSpace* GetStockCS(int Family); 85 CPDF_ColorSpace(CPDF_Document* pDoc, int family);
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/ |
InfPomAlignmentMisc.py | 183 Family = ItemObj.GetFamily()
186 Family = ''
254 ValueItem = (ItemObj.GetTarget(), Family, TagName, '')
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/ |
GenInfFile.py | 511 Family = Source.GetFamily()
516 Statement = GenSourceStatement(ConvertPath(SourceFile), Family, FeatureFlag)
600 # @param Family: string of source file family field
608 def GenSourceStatement(SourceFile, Family, FeatureFlag, TagName=None,
614 # format of SourceFile|Family|TagName|ToolCode|FeatureFlag
624 Statement += '|' + Family + '|' + TagName + '|' + ToolCode + '|' + FeatureFlag
626 Statement += '|' + Family + '|' + TagName + '|' + ToolCode
628 Statement += '|' + Family + '|' + TagName
629 elif Family: [all...] |