Home
last modified time | relevance | path

Searched refs:obj1 (Results 1 – 16 of 16) sorted by relevance

/src/crypto/krb5/src/lib/rpc/
H A Ddyn.c81 DynObjectP obj1; in DynCopy() local
83 obj1 = (DynObjectP) malloc(sizeof(DynObjectRecP)); in DynCopy()
84 if (obj1 == NULL) in DynCopy()
87 obj1->el_size = obj->el_size; in DynCopy()
88 obj1->num_el = obj->num_el; in DynCopy()
89 obj1->size = obj->size; in DynCopy()
90 obj1->inc = obj->inc; in DynCopy()
91 obj1->debug = obj->debug; in DynCopy()
92 obj1->paranoid = obj->paranoid; in DynCopy()
93 obj1->initzero = obj->initzero; in DynCopy()
[all …]
/src/crypto/openssl/crypto/x509/
H A Dv3_pmaps.c68 ASN1_OBJECT *obj1 = NULL, *obj2 = NULL; in v2i_POLICY_MAPPINGS() local
86 obj1 = OBJ_txt2obj(val->name, 0); in v2i_POLICY_MAPPINGS()
88 if (!obj1 || !obj2) { in v2i_POLICY_MAPPINGS()
98 pmap->issuerDomainPolicy = obj1; in v2i_POLICY_MAPPINGS()
100 obj1 = obj2 = NULL; in v2i_POLICY_MAPPINGS()
105 ASN1_OBJECT_free(obj1); in v2i_POLICY_MAPPINGS()
/src/contrib/bmake/unit-tests/
H A Darchive-suffix.mk17 all: lib.a(obj1.o)
22 obj1.c:
H A Dposix1.mk136 lib.a: lib.a(obj1.o) lib.a(obj2.o) lib.a(obj3.o)
143 lib.a(obj1.o): dir/obj_1.o dummy
179 obj1.c dir/obj_1.c obj2.c obj_2.c obj3.c:
/src/sys/dev/usb/
H A Dusb_hub_acpi.c282 ACPI_OBJECT *obj1; in acpi_uhub_parse_pld() local
284 obj1 = &obj->Package.Elements[0]; in acpi_uhub_parse_pld()
285 len = obj1->Buffer.Length; in acpi_uhub_parse_pld()
286 resbuf = obj1->Buffer.Pointer; in acpi_uhub_parse_pld()
/src/sys/dev/drm2/
H A Ddrm_gem.c425 struct drm_gem_object *obj1; in drm_gem_object_handle_free() local
428 obj1 = drm_gem_names_remove(&dev->object_names, obj->name); in drm_gem_object_handle_free()
430 drm_gem_object_unreference(obj1); in drm_gem_object_handle_free()
/src/sys/contrib/openzfs/module/lua/
H A Dlobject.h238 #define setobj(L,obj1,obj2) \ argument
239 { const TValue *io2=(obj2); TValue *io1=(obj1); \
351 #define setobj(L,obj1,obj2) \ argument
352 { const TValue *o2_=(obj2); TValue *o1_=(obj1); \
/src/contrib/libdiff/test/
H A Dtest019.left.txt299 struct got_object *obj1 = NULL;
304 err = got_object_open(&obj1, repo, id1);
307 if (obj1->type != GOT_OBJ_TYPE_BLOB) {
320 err = got_object_blob_open(&blob1, repo, obj1, 8192);
331 if (obj1)
332 got_object_close(obj1);
H A Dtest019.right.txt342 struct got_object *obj1 = NULL;
347 err = got_object_open(&obj1, repo, id1);
350 if (obj1->type != GOT_OBJ_TYPE_BLOB) {
363 err = got_object_blob_open(&blob1, repo, obj1, 8192);
374 if (obj1)
375 got_object_close(obj1);
H A Dtest020.left.txt338 struct got_object *obj1 = NULL;
343 err = got_object_open(&obj1, repo, id1);
346 if (obj1->type != GOT_OBJ_TYPE_BLOB) {
359 err = got_object_blob_open(&blob1, repo, obj1, 8192);
370 if (obj1)
371 got_object_close(obj1);
H A Dtest020.right.txt373 struct got_object *obj1 = NULL;
378 err = got_object_open(&obj1, repo, id1);
381 if (obj1->type != GOT_OBJ_TYPE_BLOB) {
394 err = got_object_blob_open(&blob1, repo, obj1, 8192);
405 if (obj1)
406 got_object_close(obj1);
/src/sys/contrib/openzfs/module/zfs/
H A Ddmu_redact.c177 const struct objnode *obj1 = o1; in objnode_compare() local
179 if (obj1->obj < obj2->obj) in objnode_compare()
181 if (obj1->obj > obj2->obj) in objnode_compare()
399 redact_range_compare(uint64_t obj1, uint64_t off1, uint32_t dbss1, in redact_range_compare() argument
403 create_zbookmark_from_obj_off(&z1, obj1, off1); in redact_range_compare()
/src/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp556 std::string obj1 = sec1->getObjMsg(d->value); in reportDuplicate() local
563 msg += obj1 + "\n>>> defined at "; in reportDuplicate()
/src/contrib/lua/src/
H A Dlobject.h118 #define setobj(L,obj1,obj2) \ argument
119 { TValue *io1=(obj1); const TValue *io2=(obj2); \
/src/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1175 bool operator()(LineState *obj1, LineState *obj2) const { in operator ()()
1176 return *obj1 < *obj2; in operator ()()
/src/libexec/rtld-elf/
H A Drtld.c2736 Obj_Entry *obj1; in process_needed() local
2739 obj1 = needed->obj = load_object(obj->strtab + needed->name, -1, in process_needed()
2741 if (obj1 == NULL && !ld_tracing && in process_needed()