Searched refs:obj (Results 276 - 300 of 1247) sorted by relevance

<<11121314151617181920>>

/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/19_diagnostics/
H A Dstdexceptions.cc34 std::logic_error obj = std::logic_error(s); local
37 // std::logic_error obj((std::string)strlit);
39 VERIFY( std::strcmp(obj.what(), s.data()) == 0 );
63 catch(const fuzzy_logic& obj)
64 { VERIFY( std::strcmp("whoa", obj.what()) == 0 ); }
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/
H A Dcleanup1.C1 // Bug: obj gets destroyed twice because the fixups for the return are
21 stackObj obj; local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash37.C8 C<T, &T::output> call(T& obj) argument
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dcmdlne-dD.c8 #define objlike obj like
H A Dcmdlne-dM.c8 #define objlike obj like
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/lib/
H A Dcompat.exp53 # compat-obj -- compile to an object file
60 proc compat-obj { source dest options optstr } {
81 foreach obj [split $objlist] {
82 if ![file exists $obj] then {
206 compat-obj "$src2" "$obj2_alt" $alt_options $optstr
207 compat-obj "$src3" "$obj3_alt" $alt_options $optstr
212 compat-obj "$src1" "$obj1" $tst_options $optstr
213 compat-obj "$src2" "$obj2_tst" $tst_options $optstr
214 compat-obj "$src3" "$obj3_tst" $tst_options $optstr
/openbsd-current/regress/libexec/ld.so/dlopen/libac/
H A DMakefile1 .include <bsd.obj.mk>
/openbsd-current/regress/libexec/ld.so/elf/foo/
H A DMakefile3 .include <bsd.obj.mk>
/openbsd-current/regress/libexec/ld.so/weak/prog2/
H A DMakefile3 .include <bsd.obj.mk>
/openbsd-current/regress/misc/exceptions/foo/
H A DMakefile1 .include <bsd.obj.mk>
/openbsd-current/regress/misc/sse2/foo/
H A DMakefile1 .include <bsd.obj.mk>
/openbsd-current/regress/usr.bin/mandoc/
H A DMakefile.sub8 obj-clean
12 .PHONY: ${_MAIN_TARGETS} ${_CLEAN_TARGETS} ${_OUT_TARGETS} obj-check
/openbsd-current/regress/usr.bin/mandoc/db/
H A DMakefile5 obj-clean: _SUBDIRUSE
7 .PHONY: obj-clean
/openbsd-current/lib/libtls/man/
H A DMakefile19 all clean cleandir depend includes obj tags:
/openbsd-current/distrib/i386/
H A DMakefile5 .if make(obj) || make(cleandir) || make(clean)
/openbsd-current/distrib/amd64/
H A DMakefile5 .if make(obj) || make(cleandir) || make(clean)
/openbsd-current/gnu/usr.bin/perl/dist/Storable/t/
H A Dleaks.t47 my $obj = TestClass->new;
48 eval { freeze($obj); };
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dhashtable.h55 #define hash_for_each_possible(table, obj, member, key) \
56 hlist_for_each_entry(obj, __hash(table, key), member)
57 #define hash_for_each_safe(table, i, tmp, obj, member) \
59 hlist_for_each_entry_safe(obj, tmp, &table[i], member)
/openbsd-current/distrib/
H A DMakefile5 .if make(obj)
/openbsd-current/sys/dev/pci/drm/i915/gem/
H A Di915_gem_ttm_pm.h24 void i915_ttm_backup_free(struct drm_i915_gem_object *obj);
H A Di915_gem_tiling.h14 bool i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj);
/openbsd-current/sys/dev/pci/drm/include/drm/
H A Ddrm_syncobj.h74 * @obj: sync object
76 * This acquires an additional reference to @obj. It is illegal to call this
80 drm_syncobj_get(struct drm_syncobj *obj) argument
82 kref_get(&obj->refcount);
87 * @obj: sync object.
90 drm_syncobj_put(struct drm_syncobj *obj) argument
92 kref_put(&obj->refcount, drm_syncobj_free);
99 * This acquires additional reference to &drm_syncobj.fence contained in @obj,
104 * Either the fence of @obj or NULL if there's none.
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_fb_pin.c28 struct drm_i915_gem_object *obj = intel_fb_obj(fb); local
40 if (WARN_ON(!i915_gem_object_is_framebuffer(obj)))
48 ret = i915_gem_object_lock(obj, &ww);
53 unsigned int flags = obj->flags;
63 ret = __i915_gem_object_migrate(obj, &ww, INTEL_REGION_LMEM_0,
69 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
73 vma = i915_vma_instance(obj, vm, view);
96 i915_gem_object_flush_if_display(obj);
114 struct drm_i915_gem_object *obj = intel_fb_obj(fb); local
122 if (drm_WARN_ON(dev, !i915_gem_object_is_framebuffer(obj)))
[all...]
/openbsd-current/lib/libkvm/
H A Dkvm_private.h93 #define KREAD(kd, addr, obj) \
94 (kvm_read(kd, addr, (void *)(obj), sizeof(*obj)) != sizeof(*obj))
/openbsd-current/gnu/usr.bin/perl/dist/base/t/
H A Dfields.t42 eval q(my Foo $obj = Foo->new; $obj->{notthere} = "");
48 my Foo $obj = $_;
53 $obj->{Pants} = 'Whatever';
54 $obj->{_no} = 'Yeah';
55 @{$obj}{qw(what who _up_yours)} = ('Ahh', 'Moo', 'Yip');
58 is($obj->{$k}, $v);

Completed in 245 milliseconds

<<11121314151617181920>>