Searched refs:IdStr (Results 1 – 4 of 4) sorted by relevance
557 CHAR16 *IdStr; in IfConfig6ParseInterfaceId() local564 IdStr = (*Arg)->Arg; in IfConfig6ParseInterfaceId()569 while ((*IdStr != L'\0') && (Index < 8)) { in IfConfig6ParseInterfaceId()572 while ((*IdStr != L':') && (*IdStr != L'\0')) { in IfConfig6ParseInterfaceId()574 if ((*IdStr <= L'F') && (*IdStr >= L'A')) { in IfConfig6ParseInterfaceId()575 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'A' + 10); in IfConfig6ParseInterfaceId()576 } else if ((*IdStr <= L'f') && (*IdStr >= L'a')) { in IfConfig6ParseInterfaceId()577 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'a' + 10); in IfConfig6ParseInterfaceId()578 } else if ((*IdStr <= L'9') && (*IdStr >= L'0')) { in IfConfig6ParseInterfaceId()579 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'0'); in IfConfig6ParseInterfaceId()[all …]
1280 CHAR8 *IdStr; in XenStoreTransactionStart() local1284 (VOID **) &IdStr); in XenStoreTransactionStart()1286 Transaction->Id = (UINT32)AsciiStrDecimalToUintn (IdStr); in XenStoreTransactionStart()1287 FreePool (IdStr); in XenStoreTransactionStart()
964 IdStr = BinFd.read(0x08)965 ImageId = struct.unpack('<Q', IdStr)969 … TxtBody.append("#define FSP_IMAGE_ID 0x%016X /* '%s' */\n" % (ImageId[0], IdStr))
3389 CHAR16 *IdStr; in DevPathFromTextBBS() local3395 IdStr = GetNextParamStr (&TextDeviceNode); in DevPathFromTextBBS()3400 (UINT16) (sizeof (BBS_BBS_DEVICE_PATH) + StrLen (IdStr)) in DevPathFromTextBBS()3420 StrToAscii (IdStr, &AsciiStr); in DevPathFromTextBBS()