Searched refs:function (Results 201 - 225 of 384) sorted by relevance

1234567891011>>

/haiku/headers/os/
H A DBeBuild.h97 #define B_DEFINE_SYMBOL_VERSION(function, versionedSymbol) \
98 __asm__(".symver " function "," versionedSymbol)
/haiku/src/libs/print/libprint/
H A DHalftone.cpp185 PFN_gray function = NULL; local
187 case kMixToGray: function = ToGray;
189 case kRedChannel: function = GetRedValue;
191 case kGreenChannel: function = GetGreenValue;
193 case kBlueChannel: function = GetBlueValue;
196 SetGrayFunction(function);
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Ddvb_interface.c92 val = gPci->read_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, PCI_command, 2);
94 gPci->write_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, PCI_command, 2, val);
97 val = gPci->read_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, PCI_latency, 1);
100 gPci->write_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, PCI_latency, 1, PCI_LATENCY);
103 device->irq = gPci->read_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, PCI_interrupt_line, 1);
111 val = gPci->read_pci_config(device->pci_info->bus, device->pci_info->device, device->pci_info->function, 0x10, 4);
/haiku/src/kits/debugger/debug_info/
H A DDwarfImageDebugInfo.cpp591 DwarfFunctionDebugInfo* function = dynamic_cast<DwarfFunctionDebugInfo*>( local
599 DIESubprogram* entry = function != NULL
600 ? function->SubprogramEntry() : NULL;
603 "function: %s\n", entry,
649 CompilationUnit* unit = function != NULL ? function->GetCompilationUnit()
675 DIESubprogram* subprogramEntry = function != NULL ?
676 function->SubprogramEntry() : NULL;
711 // create function parameter objects
760 TRACE_CODE("DwarfImageDebugInfo::GetStatement(function
763 DwarfFunctionDebugInfo* function local
857 DwarfFunctionDebugInfo* function local
952 DwarfFunctionDebugInfo* function local
1424 DwarfFunctionDebugInfo* function local
[all...]
H A DDwarfImageDebugInfo.h78 virtual status_t GetStatement(FunctionDebugInfo* function,
82 FunctionDebugInfo* function,
86 virtual status_t GetSourceLanguage(FunctionDebugInfo* function,
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DVolume.cpp182 // init the hash function
540 hash_function_t function = NULL; local
541 // find the hash function
544 function = keyed_hash;
547 function = yura_hash;
550 function = r5_hash;
556 return function;
563 // get the hash function
567 INFORM(("No or wrong directory hash function. Try to detect...\n"));
573 INFORM(("Directory hash function successfull
609 hash_function_t function = hash_function_for_code(hashCodes[i]); local
626 _VerifyHashFunction(hash_function_t function) argument
[all...]
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci_info.cpp145 status = pci_read_config(info->bus, info->device, info->function, PCI_status, 2);
154 cap_ptr = pci_read_config(info->bus, info->device, info->function, PCI_capabilities_ptr, 1);
157 cap_ptr = pci_read_config(info->bus, info->device, info->function, PCI_capabilities_ptr_2, 1);
172 cap_id = pci_read_config(info->bus, info->device, info->function, cap_ptr, 1);
173 cap_ptr = pci_read_config(info->bus, info->device, info->function, cap_ptr + 1, 1);
194 if (pci_find_capability(info->bus, info->device, info->function,
200 info->function, capPointer, 4);
222 capability = pci_read_config(info->bus, info->device, info->function,
238 TRACE(("PCI: [dom %d, bus %2d] bus %3d, device %2d, function %2d: vendor %04x, device %04x, revision %02x\n",
240 info->device, info->function, inf
[all...]
H A Dpci_device.cpp28 uint8 bus, deviceNumber, function; local
36 &function, false) != B_OK)
39 PCIDev *dev = gPCI->FindDevice(domain, bus, deviceNumber, function);
/haiku/src/add-ons/accelerants/skeleton/engine/
H A Dagp.c76 (nai.agpi.function == si->function))
147 LOG(4,("AGP: bus %d, device %d, function %d\n", ai.bus, ai.device, ai.function));
/haiku/src/system/libroot/posix/glibc/include/arch/ppc/
H A Dsysdep.h114 /* If compiled for profiling, call `_mcount' at the start of each function. */
150 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
169 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
180 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
/haiku/src/system/boot/platform/bios_ia32/
H A Dinterrupts.cpp34 // interrupt function prototypes
94 set_interrupt_gate(int n, void (*function)()) argument
100 = (KERNEL_CODE_SELECTOR << 16) | (0x0000ffff & (addr_t)function);
101 sDebugIDT[n].b = (0xffff0000 & (addr_t)function) | 0x8e00;
/haiku/src/add-ons/accelerants/nvidia/engine/
H A Dnv_agp.c77 && nai.agpi.function == si->function) {
152 LOG(4,("AGP: bus %d, device %d, function %d\n", ai.bus, ai.device, ai.function));
/haiku/headers/private/debugger/arch/
H A DArchitecture.h84 FunctionDebugInfo* function,
97 // with the image/function corresponding
107 virtual status_t DisassembleCode(FunctionDebugInfo* function,
110 virtual status_t GetStatement(FunctionDebugInfo* function,
/haiku/src/bin/debug/ltrace/
H A Dltrace_stub.cpp34 static PatchEntry* Create(const char* name, void* function) argument
45 arch_init_call_stub(stub, &function_call_callback, function);
47 entry->originalFunction = function;
/haiku/src/kits/debugger/arch/x86/
H A DArchitectureX86.cpp356 ArchitectureX86::CreateStackFrame(Image* image, FunctionDebugInfo* function, argument
390 hasPrologue = _HasFunctionPrologue(function);
398 // If the function is not frameless and we're at the top frame we need
404 if (eip < function->Address() + 3) {
408 if (eip > function->Address()) {
413 // Not in the function prologue, but maybe after the
426 // function pointer, and the prologue hasn't actually been
512 // allocate a buffer for the function code to disassemble
604 ArchitectureX86::DisassembleCode(FunctionDebugInfo* function, argument
615 status_t error = disassembler.Init(function
644 GetStatement(FunctionDebugInfo* function, target_addr_t address, Statement*& _statement) argument
[all...]
/haiku/src/kits/debugger/arch/x86_64/
H A DArchitectureX8664.cpp433 ArchitectureX8664::CreateStackFrame(Image* image, FunctionDebugInfo* function, argument
466 hasPrologue = _HasFunctionPrologue(function);
474 // If the function is not frameless and we're at the top frame we need
480 if (rip < function->Address() + kFunctionPrologueSize) {
484 if (rip > function->Address()) {
489 // Not in the function prologue, but maybe after the
503 // function pointer, and the prologue hasn't actually been
589 // allocate a buffer for the function code to disassemble
681 ArchitectureX8664::DisassembleCode(FunctionDebugInfo* function, argument
692 status_t error = disassembler.Init(function
721 GetStatement(FunctionDebugInfo* function, target_addr_t address, Statement*& _statement) argument
[all...]
/haiku/headers/private/debugger/debug_info/
H A DTeamDebugInfo.h105 status_t _AddFunction(Function* function);
106 void _RemoveFunction(Function* function);
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dinit.c29 #define get_pci(o, s) (*pci_bus->read_pci_config)(pcii->bus, pcii->device, pcii->function, (o), (s))
30 #define set_pci(o, s, v) (*pci_bus->write_pci_config)(pcii->bus, pcii->device, pcii->function, (o), (s), (v))
49 di->pcii.bus, di->pcii.device, di->pcii.function );
70 di->pcii.bus, di->pcii.device, di->pcii.function );
92 di->pcii.bus, di->pcii.device, di->pcii.function );
130 di->pcii.bus, di->pcii.device, di->pcii.function);
212 di->pcii.bus, di->pcii.device, di->pcii.function );
280 di->pcii.bus, di->pcii.device, di->pcii.function );
/haiku/src/system/libroot/posix/musl/math/x86_64/
H A Dexp2l.s2 .type expm1l,@function
31 .type exp2l,@function
/haiku/src/add-ons/kernel/drivers/network/ether/wb840/
H A Ddriver.c71 gPci->write_pci_config(item->bus, item->device, item->function,
73 item->bus, item->device, item->function,
/haiku/src/bin/filteredquery/
H A DFilteredQuery.cpp8 // Helper function to copy a query.
71 TFilteredQuery::RemoveFilter(filter_function function) argument
76 if (pair->filter == function) {
/haiku/src/servers/syslog_daemon/
H A DSyslogDaemon.cpp127 SyslogDaemon::AddHandler(handler_func function) argument
129 fHandlers.AddItem((void*)function);
/haiku/headers/cpp/
H A Diomanip.h163 // Macro to define an iomanip function, with one argument
164 // The underlying function is `__iomanip_<name>'
166 #define __DEFINE_IOMANIP_FN1(type,param,function) \
167 extern ios& __iomanip_##function (ios&, param); \
168 inline type<param> function (param n) \
169 { return type<param> (__iomanip_##function, n); }
H A Diterator.h31 #include <function.h>
/haiku/src/system/boot/platform/atari_m68k/
H A Dstage1.S8 #define FUNCTION(x) .global x; .type x,@function; x

Completed in 722 milliseconds

1234567891011>>