Searched refs:BS (Results 1 - 25 of 69) sorted by relevance

123

/freebsd-11-stable/stand/efi/libefi/
H A Ddelay.c36 BS->Stall(usecs);
H A Dtime_event.c51 BS->CreateEvent(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK,
54 BS->SetTimer(time_event, TimerPeriodic, 100000);
62 BS->SetTimer(time_event, TimerCancel, 0);
63 BS->CloseEvent(time_event);
H A Defi_driver_utils.c47 status = BS->LocateHandle(ByProtocol, filter, NULL,
57 status = BS->LocateHandle(ByProtocol, filter, NULL,
65 BS->ConnectController(handles[i], NULL, NULL, true);
80 status = BS->InstallMultipleProtocolInterfaces(
H A Dlibefi.c37 EFI_BOOT_SERVICES *BS; variable
H A Ddevpath.c44 status = BS->HandleProtocol(handle, &ImageDevicePathGUID,
57 status = BS->HandleProtocol(handle, &DevicePathGUID, (VOID **)&devpath);
72 status = BS->LocateProtocol(&DevicePathToTextGUID, NULL,
88 BS->FreePool(text);
135 status = BS->LocateDevicePath(&DevicePathGUID, &devpath, &h);
/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dok_syntax1.tab.h13 #define BS 267 macro
/freebsd-11-stable/contrib/byacc/test/yacc/
H A Dok_syntax1.tab.h10 #define BS 267 macro
/freebsd-11-stable/stand/efi/loader/arch/i386/
H A Defimd.c77 status = BS->LocateHandle(ByProtocol, &fpswa_guid, 0, &sz, &handle);
79 status = BS->HandleProtocol(handle, &fpswa_guid, &fpswa);
94 BS->GetMemoryMap(&sz, NULL, &mapkey, &mmsz, &mmver);
98 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData, pages,
114 status = BS->GetMemoryMap(&sz, mm, &mapkey, &mmsz, &mmver);
134 status = BS->ExitBootServices(IH, mapkey);
/freebsd-11-stable/contrib/ntp/include/
H A Dascii.h49 #define BS 8 macro
/freebsd-11-stable/stand/efi/loader/
H A Defi_main.c42 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize));
43 BS->Exit(IH, exit_code, 0, NULL);
85 BS = ST->BootServices;
88 status = BS->LocateProtocol(&console_control_protocol, NULL,
95 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
99 BS->Exit(IH, status, 0, NULL);
106 status = BS->HandleProtocol(IH, &image_protocol, (VOID**)&img);
H A Dmain.c101 status = BS->LocateHandle(ByProtocol, &inputid, 0, &sz, 0);
104 status = BS->LocateHandle(ByProtocol, &inputid, 0, &sz,
120 status = BS->HandleProtocol(*walker, &devid, (VOID **)&path);
569 BS->HandleProtocol(IH, &imgid, (VOID**)&img);
691 status = BS->HandleProtocol(img->DeviceHandle, &devid, (void **)&imgpath);
723 BS->SetWatchdogTimer(0, 0, 0, NULL);
815 status = BS->GetMemoryMap(&sz, 0, &key, &dsz, &dver);
821 status = BS->GetMemoryMap(&sz, map, &key, &dsz, &dver);
970 status = BS->LocateHandle(AllHandles, NULL, NULL, &bufsz, buffer);
981 status = BS
[all...]
H A Dframebuffer.c198 status = BS->LocateHandle(ByProtocol, &uga_guid, NULL, &bufsz, NULL);
202 status = BS->LocateHandle(ByProtocol, &uga_guid, NULL, &bufsz, buf);
212 status = BS->HandleProtocol(*hp, &pciio_guid, (void **)&pciio);
255 BS->FreePool(resattr);
435 status = BS->LocateProtocol(&gop_guid, NULL, (VOID **)&gop);
439 status = BS->LocateProtocol(&uga_guid, NULL, (VOID **)&uga);
475 status = BS->LocateProtocol(&gop_guid, NULL, (VOID **)&gop);
544 status = BS->LocateProtocol(&uga_guid, NULL, (VOID **)&uga);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp35 const SCEV *BS = SE.getSCEV(const_cast<Value *>(LocB.Ptr)); local
38 if (AS == BS)
44 SE.getEffectiveSCEVType(BS->getType())) {
54 const SCEV *BA = SE.getMinusSCEV(BS, AS);
64 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS
68 const SCEV *AB = SE.getMinusSCEV(AS, BS);
82 Value *BO = GetBaseValue(BS);
/freebsd-11-stable/stand/efi/boot1/
H A Dboot1.c68 if (BS->AllocatePool(EfiLoaderData, len, &out) == EFI_SUCCESS)
78 (void)BS->FreePool(buf);
228 if ((status = BS->LoadImage(TRUE, IH, devpath_last(dev->devpath),
235 if ((status = BS->HandleProtocol(loaderhandle, &LoadedImageGUID,
261 if ((status = BS->StartImage(loaderhandle, NULL, NULL)) !=
295 status = BS->HandleProtocol(h, &DevicePathGUID, (void **)&devpath);
311 status = BS->HandleProtocol(h, &BlockIoProtocolGUID, (void **)&blkio);
403 BS = ST->BootServices;
407 status = BS->LocateProtocol(&ConsoleControlGUID, NULL,
443 status = BS
[all...]
H A Dboot_module.h40 #define DSTALL(d) BS->Stall(d)
H A Dzfs_module.c121 if ((status = BS->AllocatePool(EfiLoaderData, sizeof(*dev),
130 (void)BS->FreePool(tdev);
188 if ((status = BS->AllocatePool(EfiLoaderData, (UINTN)st.st_size, &buf))
198 (void)BS->FreePool(buf);
H A Dufs_module.c170 if ((status = BS->AllocatePool(EfiLoaderData, size, &buf)) !=
181 (void)BS->FreePool(buf);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp129 auto &BS = BlockSizes[MBB->getNumber()-1]; local
130 BS.first += AlignExtra;
131 BS.second = AlignExtra;
158 auto &BS = BlockSizes[MBB->getNumber()-1]; local
159 BS.first -= BS.second;
160 Offset -= BS.second;
164 BS.first += AlignExtra;
165 BS.second = AlignExtra;
/freebsd-11-stable/stand/efi/loader/arch/amd64/
H A Dtrap.c152 BS->FreePages(lidt_pa, EFI_SIZE_TO_PAGES(fw_idt.rd_limit));
156 BS->FreePages(exc_stack_pa, 1);
160 BS->FreePages(tss_pa, EFI_SIZE_TO_PAGES(sizeof(struct
165 BS->FreePages(tss_pa, 2);
181 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
218 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
226 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData, 1,
268 status = BS->AllocatePages(AllocateAnyPages,
H A Delf64_freebsd.c152 err = BS->AllocatePages(AllocateMaxAddress, EfiLoaderData, 1,
160 err = BS->AllocatePages(AllocateMaxAddress, EfiLoaderData, 3,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h352 BufferByteStreamer BS;
354 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {}
362 ByteStreamer &getActiveStreamer() { return IsBuffering ? TmpBuf->BS : OutBS; }
378 DebugLocDwarfExpression(unsigned DwarfVersion, BufferByteStreamer &BS,
380 : DwarfExpression(DwarfVersion, CU), OutBS(BS) {}
/freebsd-11-stable/contrib/ncurses/misc/
H A Dgen_edit.sh45 : ${XTERM_KBS=BS}
65 if test "$XTERM_KBS" != "BS" ; then
/freebsd-11-stable/contrib/byacc/
H A Ddefs.h75 #define BS '\b' /* backspace */ macro
/freebsd-11-stable/contrib/ncurses/menu/
H A Dm_driver.c106 | - BS; the pattern stays as it is and the previous
130 if (ch && ch != BS)
151 if (ch == BS)
186 assert(ch == 0 || ch == BS);
190 if (ch && ch != BS && menu->pindex > 0)
420 result = _nc_Match_Next_Character_In_Item_Name(menu, BS, &item);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600Packetizer.cpp228 std::vector<R600InstrInfo::BankSwizzle> &BS,
268 PV, BS, isTransSlot)) {
296 std::vector<R600InstrInfo::BankSwizzle> BS; variable
299 if (isBundlableWithCurrentPMI(MI, PV, BS, isTransSlot)) {
304 MI->getOperand(Op).setImm(BS[i]); variable
308 MI.getOperand(Op).setImm(BS.back());
226 isBundlableWithCurrentPMI(MachineInstr &MI, const DenseMap<unsigned, unsigned> &PV, std::vector<R600InstrInfo::BankSwizzle> &BS, bool &isTransSlot) argument

Completed in 151 milliseconds

123