Home
last modified time | relevance | path

Searched refs:typeCode (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Mac/Modules/ae/
D_AEmodule.c151 DescType typeCode; in AEDesc_AEPutPtr() local
160 PyMac_GetOSType, &typeCode, in AEDesc_AEPutPtr()
166 typeCode, in AEDesc_AEPutPtr()
203 DescType typeCode; in AEDesc_AEGetNthPtr() local
225 &typeCode, in AEDesc_AEGetNthPtr()
230 PyMac_BuildOSType, typeCode, in AEDesc_AEGetNthPtr()
269 DescType typeCode; in AEDesc_AESizeOfNthItem() local
279 &typeCode, in AEDesc_AESizeOfNthItem()
283 PyMac_BuildOSType, typeCode, in AEDesc_AESizeOfNthItem()
312 DescType typeCode; in AEDesc_AEPutParamPtr() local
[all …]
/external/gptfdisk/
Dmbrpart.cc151 int MBRPart::SetType(uint8_t typeCode, int isExtended) { in SetType() argument
154 if ((isExtended == 1) || ((typeCode != 0x05) && (typeCode != 0x0f) && (typeCode != 0x85))) { in SetType()
155 partitionType = typeCode; in SetType()
Dgptcl.cc30 mbrParts = twoParts = outDevice = typeCode = partGUID = diskGUID = NULL; in GPTDataCL()
102 …{"typecode", 't', POPT_ARG_STRING, &typeCode, 't', "change partition type code", "partnum:{hexcode… in DoOptions()
363 partNum = (int) GetInt(typeCode, 1) - 1; in DoOptions()
367 typeHelper = GetString(typeCode, 2); in DoOptions()
373 << "'s type code to " << GetString(typeCode, 2) << "!\n"; in DoOptions()
376 free(typeCode); in DoOptions()
Dgpttext.cc915 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()
Dgptcl.h34 char *newPartInfo, *mbrParts, *twoParts, *outDevice, *typeCode; variable
Dmbrpart.h85 int SetType(uint8_t typeCode, int isExtended = 0);
/external/clang/utils/TableGen/
DNeonEmitter.cpp957 char typeCode = '\0'; in getInstTypeCode() local
964 typeCode = 'p'; in getInstTypeCode()
966 typeCode = T.isSigned() ? 's' : 'u'; in getInstTypeCode()
968 typeCode = 'f'; in getInstTypeCode()
971 switch (typeCode) { in getInstTypeCode()
977 typeCode = 'i'; in getInstTypeCode()
982 typeCode = '\0'; in getInstTypeCode()
986 if (typeCode != '\0') in getInstTypeCode()
987 S.push_back(typeCode); in getInstTypeCode()
1067 std::string typeCode = getInstTypeCode(BaseType, LocalCK); in mangleName() local
[all …]
/external/clang/lib/Sema/
DSemaInit.cpp1504 const char *typeCode; in CheckVectorType() local
1508 typeCode = "f"; in CheckVectorType()
1510 typeCode = "s"; in CheckVectorType()
1512 typeCode = "u"; in CheckVectorType()
1520 << typeCode << typeSize; in CheckVectorType()