Searched refs:typeCode (Results 1 – 10 of 10) sorted by relevance
/external/gptfdisk/ |
D | mbrpart.cc | 149 int MBRPart::SetType(uint8_t typeCode, int isExtended) { in SetType() argument 152 if ((isExtended == 1) || ((typeCode != 0x05) && (typeCode != 0x0f) && (typeCode != 0x85))) { in SetType() 153 partitionType = typeCode; in SetType()
|
D | gptcl.cc | 30 mbrParts = twoParts = outDevice = typeCode = partGUID = diskGUID = NULL; in GPTDataCL() 101 …{"typecode", 't', POPT_ARG_STRING, &typeCode, 't', "change partition type code", "partnum:{hexcode… in DoOptions() 359 partNum = (int) GetInt(typeCode, 1) - 1; in DoOptions() 363 typeHelper = GetString(typeCode, 2); in DoOptions() 369 << "'s type code to " << GetString(typeCode, 2) << "!\n"; in DoOptions() 372 free(typeCode); in DoOptions()
|
D | gpttext.cc | 915 int typeCode; in GetMBRTypeCode() local 925 typeCode = defType; in GetMBRTypeCode() 927 typeCode = StrToHex(line, 0); in GetMBRTypeCode() 928 } while ((typeCode <= 0) || (typeCode > 255)); in GetMBRTypeCode() 930 return typeCode; in GetMBRTypeCode()
|
D | gptcl.h | 34 char *newPartInfo, *mbrParts, *twoParts, *outDevice, *typeCode; variable
|
D | mbrpart.h | 85 int SetType(uint8_t typeCode, int isExtended = 0);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
D | crcmod.py | 379 for typeCode in 'B H I L Q'.split(): 380 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) 382 _sizeToTypeCode[size] = '256%s' % typeCode 386 del typeCode, size
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/ |
D | crcmod.py | 390 for typeCode in 'B H I L Q'.split(): 391 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) 393 _sizeToTypeCode[size] = '256%s' % typeCode 397 del typeCode, size
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/ |
D | crcmod.py | 390 for typeCode in 'B H I L Q'.split(): 391 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) 393 _sizeToTypeCode[size] = '256%s' % typeCode 397 del typeCode, size
|
/external/clang/utils/TableGen/ |
D | NeonEmitter.cpp | 955 char typeCode = '\0'; in getInstTypeCode() local 962 typeCode = 'p'; in getInstTypeCode() 964 typeCode = T.isSigned() ? 's' : 'u'; in getInstTypeCode() 966 typeCode = 'f'; in getInstTypeCode() 969 switch (typeCode) { in getInstTypeCode() 975 typeCode = 'i'; in getInstTypeCode() 980 typeCode = '\0'; in getInstTypeCode() 984 if (typeCode != '\0') in getInstTypeCode() 985 S.push_back(typeCode); in getInstTypeCode() 1065 std::string typeCode = getInstTypeCode(BaseType, LocalCK); in mangleName() local [all …]
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 1442 const char *typeCode; in CheckVectorType() local 1446 typeCode = "f"; in CheckVectorType() 1448 typeCode = "s"; in CheckVectorType() 1450 typeCode = "u"; in CheckVectorType() 1458 << typeCode << typeSize; in CheckVectorType()
|