Searched refs:function (Results 101 - 125 of 384) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/musl/math/x86/
H A Dscalbnf.s2 .type ldexpf,@function
7 .type scalblnf,@function
12 .type scalbnf,@function
H A Dscalbnl.s2 .type ldexpl,@function
7 .type scalblnl,@function
12 .type scalbnl,@function
H A Datan.s2 .type atan,@function
H A Datan2.s2 .type atan2,@function
H A Dlog1pl.s2 .type log1pl,@function
/haiku/headers/private/kernel/
H A Dksyscalls.h16 void *function; // pointer to the syscall function member in struct:syscall_info
50 int32 syscall_dispatcher(uint32 function, void *argBuffer, uint64 *_returnValue);
H A Dgeneric_syscall.h18 typedef status_t (*syscall_hook)(const char *subsystem, uint32 function, void *buffer, size_t bufferSize);
H A Dlow_resource_manager.h46 status_t register_low_resource_handler(low_resource_func function, void *data,
48 status_t unregister_low_resource_handler(low_resource_func function,
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPUtils.h26 ForEachItem(_LIST& list, _FUNCTION function) argument
29 function(list.ItemAt(index));
/haiku/src/system/runtime_loader/
H A Dadd_ons.cpp136 void (*function)(image_t* image) = NULL;
140 function = addOn->addOn->image_loaded;
143 function = addOn->addOn->image_relocated;
146 function = addOn->addOn->image_initialized;
149 function = addOn->addOn->image_uninitializing;
152 function = addOn->addOn->image_unloading;
156 if (function != NULL)
157 function(image);
/haiku/src/bin/debug/profile/
H A DCallgrindProfileResult.cpp68 CallgrindFunction& function = fFunctions[symbolIndex]; local
70 // check whether the called function is known already
71 CallgrindCalledFunction* calledFunction = function.calledFunctions;
74 && calledFunction->function == calledSymbol) {
87 calledFunction->next = function.calledFunctions;
88 function.calledFunctions = calledFunction;
93 function.hits++;
225 CallgrindFunction& function = functions[k]; local
226 if (function.hits == 0 && function
306 CallgrindFunction& function = image->Functions()[functionIndex]; local
[all...]
H A DCallgrindProfileResult.h20 int32 function; member in struct:CallgrindCalledFunction
23 CallgrindCalledFunction(CallgrindImageProfileResult* image, int32 function) argument
27 function(function),
/haiku/src/system/kernel/scheduler/
H A Dscheduler_profiler.cpp60 FunctionData* function = _FindFunction(functionName); local
61 if (function == NULL)
63 atomic_add((int32*)&function->fCalled, 1);
71 stackEntry->fFunction = function;
222 "function\n");
224 FunctionData* function = &fFunctionData[i];
226 " %8" B_PRId64 " %s\n", function->fCalled,
227 function->fTimeInclusive,
228 function->fTimeInclusive / function
[all...]
/haiku/headers/os/drivers/pcmcia/
H A Dcs_timer.h38 void (*function)(u_long data); member in struct:timer_list
/haiku/src/tests/system/libroot/posix/
H A Dsetjmp_test2.S1 #define FUNCTION(x) .global x; .type x,@function; x
/haiku/src/system/glue/arch/arm64/
H A Dcrti.S20 #define FUNCTION(x) .globl x; .type _init, %function; x
/haiku/src/system/libroot/posix/musl/math/x86_64/
H A Dacosl.s4 .type acosl,@function
H A Dlog1pl.s2 .type log1pl,@function
/haiku/src/system/boot/platform/openfirmware/arch/sparc/
H A Darch_start_kernel.S6 #define FUNCTION(x) .global x; .type x,@function; x
43 // Since we saved our context at the start of this function,
/haiku/src/system/glue/arch/riscv64/
H A Dcrti.S20 #define FUNCTION(x) .global x; .type x,%function; x
/haiku/src/system/libroot/os/arch/ppc/
H A Dsystem_time_asm.S6 #define FUNCTION(x) .global x; .type x,@function; x
/haiku/src/system/glue/arch/arm/
H A Dcrti.S23 #define FUNCTION(x) .global x; .type x,%function; x
/haiku/src/add-ons/kernel/busses/pci/x86/
H A DX86PCIController.h33 uint8 bus, uint8 device, uint8 function,
37 uint8 bus, uint8 device, uint8 function,
47 uint8 bus, uint8 device, uint8 function,
51 uint8 bus, uint8 device, uint8 function,
73 uint8 bus, uint8 device, uint8 function,
77 uint8 bus, uint8 device, uint8 function,
91 uint8 bus, uint8 device, uint8 function,
95 uint8 bus, uint8 device, uint8 function,
109 uint8 bus, uint8 device, uint8 function,
113 uint8 bus, uint8 device, uint8 function,
[all...]
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIControllerFDT.cpp121 for (int function = 0; function < 8; function++) {
122 FinalizeInterrupts(parentModule, interruptMap, bus, device, function);
137 struct fdt_interrupt_map* interruptMap, int bus, int device, int function)
139 uint32 childAddr = ((bus & 0xff) << 16) | ((device & 0x1f) << 11) | ((function & 0x07) << 8);
140 uint32 interruptPin = gPCI->read_pci_config(bus, device, function, PCI_interrupt_pin, 1);
150 bus, device, function, interruptPin);
153 bus, device, function, irq);
154 gPCI->update_interrupt_line(bus, device, function, ir
136 FinalizeInterrupts(fdt_device_module_info* fdtModule, struct fdt_interrupt_map* interruptMap, int bus, int device, int function) argument
[all...]
/haiku/headers/private/shared/
H A DThread.h104 status_t (*function)(Param1), Param1 param1)
105 : fFunction(function),
125 SimpleMemberFunctionObjectWorkaround(status_t (T::*function)(), T* onThis)
126 : fFunction(function),
148 : function(callThis),
155 { (function)(fParam1, fParam2); }
160 status_t (*function)(Param1, Param2); member in class:BPrivate::TwoParamFunctionObjectWorkaround
173 : function(callThis),
181 { (function)(fParam1, fParam2, fParam3); }
186 status_t (*function)(Param member in class:BPrivate::ThreeParamFunctionObjectWorkaround
103 SingleParamFunctionObjectWorkaround( status_t (function)Param1), Param1 param1) argument
214 status_t (*function)(Param1, Param2, Param3, Param4); member in class:BPrivate::FourParamFunctionObjectWorkaround
[all...]

Completed in 101 milliseconds

1234567891011>>