/external/syslinux/gpxe/src/include/gpxe/ |
D | io.h | 43 #define PROVIDE_IOAPI( _subsys, _api_func, _func ) \ argument 44 PROVIDE_SINGLE_API ( IOAPI_PREFIX_ ## _subsys, _api_func, _func ) 70 #define IOAPI_READ( _func, _type, io_addr, _prefix, _ndigits ) ( { \ argument 73 _type _data = _func ( _io_addr ); \ 88 #define IOAPI_WRITE( _func, _type, data, io_addr, _prefix, _ndigits ) do { \ argument 94 _func ( _data, _io_addr ); \ 108 #define IOAPI_READS( _func, _type, io_addr, data, count, _prefix, _ndigits ) \ argument 117 _func ( _io_addr, _data, _count ); \ 137 #define IOAPI_WRITES( _func, _type, io_addr, data, count, _prefix, _ndigits ) \ argument 152 _func ( _io_addr, _data, _count ); \ [all …]
|
D | api.h | 54 #define PROVIDE_SINGLE_API( _prefix, _api_func, _func ) \ argument 58 typeof ( _func ) _func; \ 60 typeof ( _api_func ) _func; \ 65 __attribute__ (( alias ( #_func ) ));
|
D | nap.h | 32 #define PROVIDE_NAP( _subsys, _api_func, _func ) \ argument 33 PROVIDE_SINGLE_API ( NAP_PREFIX_ ## _subsys, _api_func, _func )
|
D | umalloc.h | 24 #define PROVIDE_UMALLOC( _subsys, _api_func, _func ) \ argument 25 PROVIDE_SINGLE_API ( UMALLOC_PREFIX_ ## _subsys, _api_func, _func )
|
D | timer.h | 34 #define PROVIDE_TIMER( _subsys, _api_func, _func ) \ argument 35 PROVIDE_SINGLE_API ( TIMER_PREFIX_ ## _subsys, _api_func, _func )
|
D | pci_io.h | 33 #define PROVIDE_PCIAPI( _subsys, _api_func, _func ) \ argument 34 PROVIDE_SINGLE_API ( PCIAPI_PREFIX_ ## _subsys, _api_func, _func )
|
D | smbios.h | 24 #define PROVIDE_SMBIOS( _subsys, _api_func, _func ) \ argument 25 PROVIDE_SINGLE_API ( SMBIOS_PREFIX_ ## _subsys, _api_func, _func )
|
D | uaccess.h | 178 #define PROVIDE_UACCESS( _subsys, _api_func, _func ) \ argument 179 PROVIDE_SINGLE_API ( UACCESS_PREFIX_ ## _subsys, _api_func, _func )
|
/external/llvm/test/MC/ARM/ |
D | arm-it-block.s | 3 .globl _func symbol 5 _func: label 6 @ CHECK: _func:
|
D | arm-trustzone.s | 6 .globl _func symbol 11 _func: label 12 @ CHECK: _func
|
D | arm-thumb-trustzone.s | 6 .globl _func symbol 11 _func: label 12 @ CHECK: _func
|
D | arm-memory-instructions.s | 3 .globl _func symbol 8 _func: label 9 @ CHECK: _func
|
/external/python/cpython2/Tools/framer/framer/ |
D | function.py | 129 self._func = func 156 self.__doc__ = self._func.__doc__ 157 self.args = ArgumentList(self._func, self.method) 161 v["PythonName"] = self._func.__name__ 162 s = v["CName"] = "%s_%s" % (self._parent.name, self._func.__name__)
|
/external/swiftshader/third_party/LLVM/test/MC/ARM/ |
D | arm-memory-instructions.s | 3 .globl _func symbol 8 _func: label 9 @ CHECK: _func
|
/external/tensorflow/tensorflow/python/ops/ |
D | template.py | 276 self._func = function.defun(func) 278 self._func = func 302 result = self._func(*args, **kwargs) 371 return self._func 566 result = self._func(*args, **kwargs) 646 return self._func
|
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/ |
D | empty-functions.ll | 8 ; CHECK-NO-FP: _func: 11 ; CHECK-FP: _func:
|
/external/libmojo/third_party/jinja2/ |
D | _compat.py | 124 def _func(): function 126 function_type = type(_func) 127 generator_type = type(_func())
|
/external/autotest/client/common_lib/ |
D | decorators.py | 66 self._func = func 70 value = self._func(instance)
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | empty-functions.ll | 8 ; CHECK-NO-FP: _func: 15 ; CHECK-FP: _func:
|
/external/tensorflow/tensorflow/python/util/ |
D | decorator_utils.py | 124 self._func = func 127 return self._func(owner_cls)
|
/external/tensorflow/tensorflow/python/framework/ |
D | function.py | 238 self._func = func 338 outputs = self._func(*inputs) 365 base_func_name = self._func_name or _get_func_name(self._func) 391 if self._func.__doc__: 392 self._definition.signature.description = self._func.__doc__ 398 description = self._func.__doc__ or None 553 self._func = func 582 self._func,
|
/external/llvm/test/DebugInfo/AArch64/ |
D | prologue_end.ll | 16 ; CHECK: bl _func 17 ; CHECK: bl _func
|
/external/llvm/test/MC/MachO/AArch64/ |
D | darwin-ARM64-reloc.s | 5 bl _func 6 bl _func + 20 128 ; CHECK-NEXT: Symbol: _func 135 ; CHECK-NEXT: Symbol: _func
|
/external/llvm/test/DebugInfo/ARM/ |
D | prologue_end.ll | 17 ; CHECK: bl {{_func|Ltmp}} 18 ; CHECK: bl {{_func|Ltmp}}
|
/external/python/cpython2/Demo/newmetaclasses/ |
D | Eiffel.py | 64 self._func = func 77 x = self._func(inst, *args, **kwargs)
|