Searched refs:object (Results 1 - 25 of 1264) sorted by relevance

1234567891011>>

/openbsd-current/sys/arch/hppa/spmath/
H A Dfloat.h29 #define Sall(object) (object)
30 #define Ssign(object) Bitfield_extract( 0, 1,object)
31 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object)
32 #define Sexponent(object) Bitfield_extract( 1, 8,object)
33 #define Smantissa(object) Bitfield_mask( 9, 23,object)
[all...]
H A Dfpbits.h43 #define Bitfield_extract(start, length, object) \
44 ((object) >> (HOSTWDSZ - (start) - (length)) & \
47 #define Bitfield_signed_extract(start, length, object) \
48 ((int)((object) << start) >> (HOSTWDSZ - (length)))
50 #define Bitfield_mask(start, len, object) \
51 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len)))
53 #define Bitfield_deposit(value,start,len,object) object = \
54 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-(len))) << (HOSTWDSZ-(start)-(len)))) | \
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Drfg2.C6 struct S { const int member; } object = { 0 }; variable in typeref:struct:S
H A Drfg18.C4 struct S { int m[10]; } object; variable in typeref:struct:S
5 struct S f () { return object; }
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstruct-ini-1.c7 struct S object = {'X', 8, 9}; variable in typeref:struct:S
11 if (object.f1 != 'X' || object.f2[0] != 8 || object.f2[1] != 9)
H A D980223.c1 typedef struct { char *addr; long type; } object; typedef in typeref:struct:__anon7017
3 object bar (object blah)
8 object foo (object x, object y)
10 object z = *(object*)(x.addr);
13 y = *(object*)(z.addr+sizeof(object));
[all...]
/openbsd-current/gnu/llvm/llvm/tools/llvm-objdump/
H A DXCOFFDump.h20 getXCOFFSymbolCsectSMC(const object::XCOFFObjectFile &Obj,
21 const object::SymbolRef &Sym);
23 std::optional<object::SymbolRef>
24 getXCOFFSymbolContainingSymbolRef(const object::XCOFFObjectFile &Obj,
25 const object::SymbolRef &Sym);
27 bool isLabel(const object::XCOFFObjectFile &Obj, const object::SymbolRef &Sym);
32 Error getXCOFFRelocationValueString(const object::XCOFFObjectFile &Obj,
33 const object::RelocationRef &RelRef,
H A DOffloadDump.h17 void dumpOffloadSections(const object::OffloadBinary &OB);
18 void dumpOffloadBinary(const object::ObjectFile &O);
H A DWasmDump.h18 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);
H A DELFDump.h18 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);
H A DCOFFDump.h18 namespace object { namespace in namespace:llvm
22 } // namespace object
25 Error getCOFFRelocationValueString(const object::COFFObjectFile *Obj,
26 const object::RelocationRef &Rel,
29 void printCOFFUnwindInfo(const object::COFFObjectFile *O);
30 void printCOFFFileHeader(const object::COFFObjectFile &Obj);
31 void printCOFFSymbolTable(const object::COFFImportFile &I);
32 void printCOFFSymbolTable(const object::COFFObjectFile &O);
H A DMachODump.h21 namespace object { namespace in namespace:llvm
27 } // namespace object
64 Error getMachORelocationValueString(const object::MachOObjectFile *Obj,
65 const object::RelocationRef &RelRef,
68 const object::MachOObjectFile *
69 getMachODSymObject(const object::MachOObjectFile *O, StringRef Filename,
70 std::unique_ptr<object::Binary> &DSYMBinary,
74 void parseInputMachO(object::MachOUniversalBinary *UB);
76 void printMachOUnwindInfo(const object::MachOObjectFile *O);
77 void printMachOFileHeader(const object
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Denum12.C5 enum Bool object; variable in typeref:enum:Bool
11 void copy_enum_bit_field () const { object = field; }
H A Denum13.C10 S object; variable
14 color = object.color;
/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/
H A Datomic_flag_clear.c21 void atomic_flag_clear(volatile atomic_flag *object) { argument
22 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
H A Datomic_flag_clear_explicit.c21 void atomic_flag_clear_explicit(volatile atomic_flag *object, argument
23 __c11_atomic_store(&(object)->_Value, 0, order);
H A Datomic_flag_test_and_set.c21 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) { argument
22 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
H A Datomic_flag_test_and_set_explicit.c21 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, argument
23 return __c11_atomic_exchange(&(object)->_Value, 1, order);
/openbsd-current/gnu/usr.bin/perl/ext/DynaLoader/
H A DMakefile.PL57 my $object;
59 $object = '$(PERL_SRC)\\$(OBJECT)';
61 $object = '$(PERL_SRC)$(OBJECT)';
63 $object = '$(PERL_SRC)/$(OBJECT)';
68 $object : \$(FIRST_MAKEFILE) \$(OBJECT)
69 \$(RM_RF) $object
70 \$(CP) \$(OBJECT) $object
72 static :: $object
/openbsd-current/gnu/gcc/gcc/config/pa/
H A Dstublib.c31 struct object;
33 struct object * __attribute__((unused)));
35 __register_frame_info (const void *p, struct object *ob)
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFRelocMap.h23 object::RelocationRef Reloc;
25 std::optional<object::RelocationRef> Reloc2;
27 object::RelocationResolver Resolver;
/openbsd-current/gnu/llvm/llvm/include/llvm/ObjCopy/
H A DObjCopy.h17 namespace object { namespace in namespace:llvm
20 } // end namespace object
30 const object::Archive &Ar);
37 object::Binary &In, raw_ostream &Out);
/openbsd-current/libexec/ld.so/
H A Ddlfcn.c59 elf_object_t *object; local
91 object = _dl_load_shlib(libname, _dl_objects, OBJTYPE_DLO, obj_flags, 0);
92 if (object == 0) {
99 object->obj_flags |= DF_1_NODELETE;
100 object->nodelete = 1;
103 _dl_link_dlopen(object);
105 if (OBJECT_REF_CNT(object) > 1) {
106 _dl_handle_nodelete(object);
109 if (object->grpsym_vec.len == 0)
110 _dl_cache_grpsym_list_setup(object);
166 elf_object_t *object; local
322 elf_object_t *object; local
407 _dl_tracefmt(int fd, elf_object_t *object, const char *fmt1, const char *fmt2, const char *objtypename) argument
494 elf_object_t *object; local
574 elf_object_t *object; local
626 const elf_object_t *object; local
[all...]
/openbsd-current/games/adventure/
H A Dvocab.c48 dstroy(int object) argument
50 move(object, 0);
54 juggle(int object) argument
58 i = place[object];
59 j = fixed[object];
60 move(object, i);
61 move(object + 100, j);
66 move(int object, int where) argument
70 if (object <= 100)
71 from = place[object];
81 put(int object, int where, int pval) argument
89 carry(int object, int where) argument
110 drop(int object, int where) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/version/t/
H A D06noop.t15 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
17 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
19 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
21 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
23 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
26 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
28 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
30 like $@, qr/operation not supported with version object/, 'No math ops with version objects';
32 like $@, qr/operation not supported with version object/, 'No math ops with version objects';

Completed in 213 milliseconds

1234567891011>>