| /src/sys/arch/hppa/spmath/ |
| float.h | 58 #define Sall(object) (object) 59 #define Ssign(object) Bitfield_extract( 0, 1,object) 60 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object) 61 #define Sexponent(object) Bitfield_extract( 1, 8,object) 62 #define Smantissa(object) Bitfield_mask( 9, 23,object) [all...] |
| fpbits.h | 69 #define Bitfield_extract(start, length, object) \ 70 ((object) >> (HOSTWDSZ - (start) - (length)) & \ 73 #define Bitfield_signed_extract(start, length, object) \ 74 ((int)((object) << start) >> (HOSTWDSZ - (length))) 76 #define Bitfield_mask(start, len, object) \ 77 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len))) 79 #define Bitfield_deposit(value,start,len,object) object = \ 80 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-(len))) << (HOSTWDSZ-(start)-(len)))) | \
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
| nouveau_nvkm_core_object.c | 29 #include <core/object.h> 37 struct nvkm_object *object; local 41 object = rb_tree_find_node(&client->objtree, &handle); 42 if (object) 47 object = rb_entry(node, typeof(*object), node); 48 if (handle < object->object) 51 if (handle > object->object) 324 struct nvkm_object *object = *pobject; local [all...] |
| nouveau_nvkm_core_oproxy.c | 32 nvkm_oproxy_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) 34 return nvkm_object_mthd(nvkm_oproxy(object)->object, mthd, data, size); 38 nvkm_oproxy_ntfy(struct nvkm_object *object, u32 mthd, 41 return nvkm_object_ntfy(nvkm_oproxy(object)->object, mthd, pevent); 46 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc, 49 return nvkm_object_map(nvkm_oproxy(object)->object, argv, argc, type, 54 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device/ |
| ctrl.h | 6 #define nvkm_control(p) container_of((p), struct nvkm_control, object) 7 #include <core/object.h> 10 struct nvkm_object object; member in struct:nvkm_control
|
| /src/external/bsd/openldap/dist/servers/lloadd/ |
| epoch.h | 31 /** @brief A callback function used to free object and associated data */ 32 typedef void (dispose_cb)( void *object ); 74 /** @brief Return an unreachable object to be freed 76 * The object should already be unreachable at the point of call and 81 * @param[in] ptr Object to be released/freed 105 * object if decremented to zero. Returning previous reference count. 108 * @param[in] object The managed object 115 void *object, 121 * @param[in] object Pointer to the managed objec [all...] |
| /src/external/gpl3/gcc/dist/libobjc/ |
| objects.c | 62 variables of the new object. */ 69 object_copy (id object, size_t extraBytes) 71 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) 74 id copy = class_createInstance (object->class_pointer, extraBytes); 75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes); 83 object_dispose (id object) 85 if ((object != nil) && CLS_ISCLASS (object->class_pointer) [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| objects.c | 62 variables of the new object. */ 69 object_copy (id object, size_t extraBytes) 71 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) 74 id copy = class_createInstance (object->class_pointer, extraBytes); 75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes); 83 object_dispose (id object) 85 if ((object != nil) && CLS_ISCLASS (object->class_pointer) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| WasmDump.h | 18 namespace object { namespace in namespace:llvm 22 } // namespace object 26 Error getWasmRelocationValueString(const object::WasmObjectFile *Obj, 27 const object::RelocationRef &RelRef, 30 void printWasmFileHeader(const object::ObjectFile *O);
|
| COFFDump.h | 18 namespace object { namespace in namespace:llvm 23 } // namespace object 26 Error getCOFFRelocationValueString(const object::COFFObjectFile *Obj, 27 const object::RelocationRef &Rel, 30 void printCOFFUnwindInfo(const object::COFFObjectFile *O); 31 void printCOFFFileHeader(const object::ObjectFile *O); 32 void printCOFFSymbolTable(const object::COFFImportFile *I); 33 void printCOFFSymbolTable(const object::COFFObjectFile *O);
|
| ELFDump.h | 18 namespace object { namespace in namespace:llvm 23 } // namespace object 27 Error getELFRelocationValueString(const object::ELFObjectFileBase *Obj, 28 const object::RelocationRef &Rel, 30 uint64_t getELFSectionLMA(const object::ELFSectionRef &Sec); 32 void printELFFileHeader(const object::ObjectFile *O); 33 void printELFDynamicSection(const object::ObjectFile *Obj); 34 void printELFSymbolVersionInfo(const object::ObjectFile *Obj);
|
| XCOFFDump.h | 12 #include "llvm/Object/XCOFFObjectFile.h" 20 getXCOFFSymbolCsectSMC(const object::XCOFFObjectFile *Obj, 21 const object::SymbolRef &Sym); 23 bool isLabel(const object::XCOFFObjectFile *Obj, const object::SymbolRef &Sym); 28 Error getXCOFFRelocationValueString(const object::XCOFFObjectFile *Obj, 29 const object::RelocationRef &RelRef,
|
| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| protocols.h | 36 __objc_protocols_add_protocol (const char *name, struct objc_protocol *object);
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| protocols.h | 36 __objc_protocols_add_protocol (const char *name, struct objc_protocol *object);
|
| /src/external/gpl3/gcc/dist/libgcc/config/rs6000/ |
| eabi-ci.S | 34 .type __GOT_START__,@object 39 .type __GOT1_START__,@object 44 .type __GOT2_START__,@object 49 .type __FIXUP_START__,@object 54 .type __CTOR_LIST__,@object 59 .type __DTOR_LIST__,@object 64 .type __SDATA_START__,@object 66 .type _SDA_BASE_,@object 72 .type __SBSS_START__,@object 77 .type _SDA2_BASE_,@object [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/ |
| eabi-ci.S | 34 .type __GOT_START__,@object 39 .type __GOT1_START__,@object 44 .type __GOT2_START__,@object 49 .type __FIXUP_START__,@object 54 .type __CTOR_LIST__,@object 59 .type __DTOR_LIST__,@object 64 .type __SDATA_START__,@object 66 .type _SDA_BASE_,@object 72 .type __SBSS_START__,@object 77 .type _SDA2_BASE_,@object [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/ |
| nouveau_nvif_object.c | 30 #include <nvif/object.h> 36 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack) 38 struct nvif_client *client = object->client; 44 if (object != &client->object) 45 args->v0.object = nvif_handle(object); 47 args->v0.object = 0; 52 return client->driver->ioctl(client->object.priv, client->super, 64 nvif_object_sclass_get(struct nvif_object *object, struct nvif_sclass **psclass [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| atomic_flag_clear.c | 23 void atomic_flag_clear(volatile atomic_flag *object) { 24 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
|
| atomic_flag_clear_explicit.c | 23 void atomic_flag_clear_explicit(volatile atomic_flag *object, 25 __c11_atomic_store(&(object)->_Value, 0, order);
|
| atomic_flag_test_and_set.c | 23 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) { 24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
|
| atomic_flag_test_and_set_explicit.c | 23 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, 25 return __c11_atomic_exchange(&(object)->_Value, 1, order);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
| disp.h | 5 #include <nvif/object.h> 9 struct nvif_object object; member in struct:nvif_disp
|
| /src/external/gpl3/gcc/dist/libobjc/objc/ |
| objc-sync.h | 40 'object'. If 'object' is nil, it does nothing. It returns 44 Note that you should not rely on the behaviour when 'object' is nil 46 objc_EXPORT int objc_sync_enter (id object); 50 with 'object'. If 'object' is nil, it does nothing. It returns 53 objc_EXPORT int objc_sync_exit (id object);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| atexit_arm.cc | 31 __aeabi_atexit (void *object, 35 return abi::__cxa_atexit(destructor, object, dso_handle);
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| objc-sync.h | 40 'object'. If 'object' is nil, it does nothing. It returns 44 Note that you should not rely on the behaviour when 'object' is nil 46 objc_EXPORT int objc_sync_enter (id object); 50 with 'object'. If 'object' is nil, it does nothing. It returns 53 objc_EXPORT int objc_sync_exit (id object);
|