Searched refs:TempByteBuffer (Results 1 – 1 of 1) sorted by relevance
311 UINT8 *TempByteBuffer; in BcfgAdd() local520 TempByteBuffer = AllocateZeroPool(sizeof(UINT32) + sizeof(UINT16) + DescSize + FilePathSize); in BcfgAdd()521 if (TempByteBuffer != NULL) { in BcfgAdd()522 TempByteStart = TempByteBuffer; in BcfgAdd()523 *((UINT32 *) TempByteBuffer) = LOAD_OPTION_ACTIVE; // Attributes in BcfgAdd()524 TempByteBuffer += sizeof (UINT32); in BcfgAdd()526 *((UINT16 *) TempByteBuffer) = (UINT16)FilePathSize; // FilePathListLength in BcfgAdd()527 TempByteBuffer += sizeof (UINT16); in BcfgAdd()529 CopyMem (TempByteBuffer, Desc, DescSize); in BcfgAdd()530 TempByteBuffer += DescSize; in BcfgAdd()[all …]