| /netbsd/src/sys/arch/hppa/spmath/ |
| D | float.h | 58 #define Sall(object) (object) argument 59 #define Ssign(object) Bitfield_extract( 0, 1,object) argument 60 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object) argument 61 #define Sexponent(object) Bitfield_extract( 1, 8,object) argument 62 #define Smantissa(object) Bitfield_mask( 9, 23,object) argument 63 #define Ssignaling(object) Bitfield_extract( 9, 1,object) argument 64 #define Ssignalingnan(object) Bitfield_extract( 1, 9,object) argument 65 #define Shigh2mantissa(object) Bitfield_extract( 9, 2,object) argument 66 #define Sexponentmantissa(object) Bitfield_mask( 1, 31,object) argument 67 #define Ssignexponent(object) Bitfield_extract( 0, 9,object) argument [all …]
|
| /netbsd/src/games/rogue/ |
| D | rogue.h | 243 typedef struct obj object; typedef 257 object *armor; 258 object *weapon; 259 object *left_ring, *right_ring; 264 object pack; 343 extern object level_objects; 352 extern object level_monsters; 445 object *alloc_object(void); 446 object *get_letter_object(int); 447 object *gr_monster(object *, int); [all …]
|
| D | object.c | 58 object level_objects; 63 static object *free_list = NULL; 165 static void gr_armor(object *); 166 static void gr_potion(object *); 167 static void gr_scroll(object *); 168 static void gr_wand(object *); 169 static void gr_weapon(object *, int); 174 static void rand_place(object *); 180 object *obj; in put_objects() 232 object *obj; in plant_gold() [all …]
|
| D | pack.c | 60 static object *check_duplicate(object *, object *); 62 static boolean mask_pack(const object *, unsigned short); 65 object * 66 add_to_pack(object *obj, object *pack, int condense) in add_to_pack() 68 object *op; in add_to_pack() 93 take_from_pack(object *obj, object *pack) in take_from_pack() 105 object * 108 object *obj; in pick_up() 154 object *obj, *new; in drop() 213 static object * [all …]
|
| /netbsd/src/games/adventure/ |
| D | vocab.c | 55 destroy(int object) in destroy() argument 57 move(object, 0); in destroy() 61 juggle(int object) in juggle() argument 65 i = place[object]; in juggle() 66 j = fixed[object]; in juggle() 67 move(object, i); in juggle() 68 move(object + 100, j); in juggle() 72 move(int object, int where) in move() argument 76 if (object <= 100) in move() 77 from = place[object]; in move() [all …]
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| D | dmu_object.c | 38 uint64_t object; in dmu_object_alloc() local 46 object = os->os_obj_next; in dmu_object_alloc() 60 if (P2PHASE(object, L2_dnode_count) == 0) { in dmu_object_alloc() 61 uint64_t offset = restarted ? object << DNODE_SHIFT : 0; in dmu_object_alloc() 67 object = offset >> DNODE_SHIFT; in dmu_object_alloc() 69 os->os_obj_next = ++object; in dmu_object_alloc() 77 (void) dnode_hold_impl(os, object, DNODE_MUST_BE_FREE, in dmu_object_alloc() 82 if (dmu_object_next(os, &object, B_TRUE, 0) == 0) in dmu_object_alloc() 83 os->os_obj_next = object - 1; in dmu_object_alloc() 91 dmu_tx_add_new_object(tx, os, object); in dmu_object_alloc() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libobjc/ |
| D | objects.c | 69 object_copy (id object, size_t extraBytes) in object_copy() argument 71 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_copy() 74 id copy = class_createInstance (object->class_pointer, extraBytes); in object_copy() 75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes); in object_copy() 83 object_dispose (id object) in object_dispose() argument 85 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_dispose() 91 objc_free (object); in object_dispose() 97 object_getClassName (id object) in object_getClassName() argument 99 if (object != nil) in object_getClassName() 100 return object->class_pointer->name; in object_getClassName() [all …]
|
| D | objc-sync.c | 124 id object; member 189 new_node->object = nil; in __objc_sync_init() 199 objc_sync_enter (id object) in objc_sync_enter() argument 208 if (object == nil) in objc_sync_enter() 237 else if (locked_node->object == object) in objc_sync_enter() 260 hash = SYNC_OBJECT_HASH(object); in objc_sync_enter() 272 if (node->object == object) in objc_sync_enter() 303 unused_node->object = object; in objc_sync_enter() 325 new_node->object = object; in objc_sync_enter() 346 objc_sync_exit (id object) in objc_sync_exit() argument [all …]
|
| /netbsd/src/external/bsd/nvi/dist/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 65 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 71 depfile=${depfile-`echo "$object" | 128 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 165 echo "$object : \\" > "$depfile" 183 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 210 echo "$object : \\" > "$depfile" 249 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` 250 test "x$dir" = "x$object" && dir= 251 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` [all …]
|
| /netbsd/src/external/bsd/openldap/dist/servers/slapd/slapi/ |
| D | slapi_ext.c | 66 static int get_extension_block(int objecttype, void *object, struct slapi_extension_block **eblock,… in get_extension_block() argument 70 *eblock = ((Connection *)object)->c_extensions; in get_extension_block() 74 *eblock = ((Operation *)object)->o_hdr->oh_extensions; in get_extension_block() 75 *parent = ((Operation *)object)->o_conn; in get_extension_block() 103 int objecttype, void *object, void *parent, in new_extension() argument 117 eblock->extensions[extensionhandle] = (*constructor)( object, parent ); in new_extension() 123 static void free_extension(struct slapi_extension_block *eblock, int objecttype, void *object, void… in free_extension() argument 134 (*destructor)( eblock->extensions[extensionhandle], object, parent ); in free_extension() 140 void *slapi_get_object_extension(int objecttype, void *object, int extensionhandle) in slapi_get_object_extension() argument 145 if ( get_extension_block( objecttype, object, &eblock, &parent ) != 0 ) { in slapi_get_object_extension() [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/python/ |
| D | py-event-types.def | 36 "GDB breakpoint stop event object", 41 "GDB continue event object", 46 "GDB exited event object", 51 "GDB new thread event object", 56 "GDB thread exited event object", 61 "GDB new inferior event object", 66 "GDB inferior deleted event object", 71 "GDB inferior function pre-call event object", 76 "GDB inferior function post-call event object", 81 "GDB register change event object", [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/gold/ |
| D | reloc.h | 68 Read_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Read_relocs() argument 70 : symtab_(symtab), layout_(layout), object_(object), in Read_relocs() 105 Gc_process_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Gc_process_relocs() argument 108 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Gc_process_relocs() 146 Scan_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Scan_relocs() argument 149 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Scan_relocs() 184 Relobj* object, Output_file* of, in Relocate_task() argument 187 : symtab_(symtab), layout_(layout), object_(object), of_(of), in Relocate_task() 432 const Sized_relobj_file<size, big_endian>* object, in rel() argument 439 Address value = psymval->value(object, addend); in rel() [all …]
|
| D | sparc.cc | 78 Sized_relobj_file<size, big_endian>* object, 92 Sized_relobj_file<size, big_endian>* object, 127 Sized_relobj_file<size, big_endian>* object, 142 Sized_relobj_file<size, big_endian>* object, 249 Sized_relobj_file<size, big_endian>* object, 258 Sized_relobj_file<size, big_endian>* object, 382 Sized_relobj_file<size, big_endian>* object); 414 Sized_relobj_file<size, big_endian>* object, in copy_reloc() argument 421 object, shndx, output_section, in copy_reloc() 567 const Sized_relobj_file<size, big_endian>* object, in rela() argument [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libgcc/config/rs6000/ |
| D | 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 …]
|
| /netbsd/src/external/bsd/openldap/dist/doc/rfc/ |
| D | rfc2713.txt | 30 a Java serialized object [Serial], a Java marshalled object [RMI], a 31 Java remote object [RMI], and a JNDI reference [JNDI]. 37 object" in place of "object in the Java programming language" 77 Java objects: a Java serialized object, a Java marshalled object, 78 and a JNDI reference. A Java remote object is stored as either a Java 79 marshalled object or a JNDI reference. 83 A Java object is stored in the LDAP directory by using the object 84 class javaObject. This is the base class from which other Java object 86 and javaNamingReference. javaObject is an abstract object class, 91 The object class javaContainer represents a directory entry dedicated [all …]
|
| /netbsd/src/crypto/external/cpl/tpm-tools/dist/ |
| D | depcomp | 60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 66 depfile=${depfile-`echo "$object" | 109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 146 echo "$object : \\" > "$depfile" 190 echo "$object : \\" > "$depfile" 225 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` 226 test "x$dir" = "x$object" && dir= 227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 255 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" 297 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/external/gpl2/xcvs/dist/build-aux/ |
| D | depcomp | 60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 66 depfile=${depfile-`echo "$object" | 109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 146 echo "$object : \\" > "$depfile" 190 echo "$object : \\" > "$depfile" 225 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` 226 test "x$dir" = "x$object" && dir= 227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 255 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" 297 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/crypto/external/cpl/trousers/dist/ |
| D | depcomp | 60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 66 depfile=${depfile-`echo "$object" | 109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 146 echo "$object : \\" > "$depfile" 190 echo "$object : \\" > "$depfile" 225 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` 226 test "x$dir" = "x$object" && dir= 227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 255 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" 297 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 267 set_dir_from "$object" 268 set_base_from "$object" 317 sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 267 set_dir_from "$object" 268 set_base_from "$object" 317 sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 267 set_dir_from "$object" 268 set_base_from "$object" 317 sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | optinfo-emit-json.cc | 59 json::object *metadata = new json::object (); in optrecord_json_writer() 62 json::object *generator = new json::object (); in optrecord_json_writer() 141 json::object *obj = optinfo_to_json (optinfo); in add_record() 159 optrecord_json_writer::add_record (json::object *obj) in add_record() 179 json::object * 182 json::object *obj = new json::object (); in impl_location_to_json() 192 json::object * 197 json::object *obj = new json::object (); in location_to_json() 206 json::object * 209 json::object *obj = new json::object (); in profile_count_to_json() [all …]
|
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 268 echo "$object : \\" > "$depfile" 302 set_dir_from "$object" 303 set_base_from "$object" [all …]
|
| /netbsd/src/external/bsd/ntp/dist/sntp/libevent/build-aux/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 268 echo "$object : \\" > "$depfile" 302 set_dir_from "$object" 303 set_base_from "$object" [all …]
|
| /netbsd/src/external/bsd/am-utils/dist/ |
| D | depcomp | 43 object Object file output by 'PROGRAMS ARGS'. 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then 125 depfile=${depfile-`echo "$object" | 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; 224 echo "$object : \\" > "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 268 echo "$object : \\" > "$depfile" 302 set_dir_from "$object" 303 set_base_from "$object" [all …]
|