Home
last modified time | relevance | path

Searched refs:obj2 (Results 1 – 12 of 12) sorted by relevance

/src/crypto/openssl/crypto/x509/
H A Dv3_pmaps.c68 ASN1_OBJECT *obj1 = NULL, *obj2 = NULL; in v2i_POLICY_MAPPINGS() local
87 obj2 = OBJ_txt2obj(val->value, 0); in v2i_POLICY_MAPPINGS()
88 if (!obj1 || !obj2) { in v2i_POLICY_MAPPINGS()
99 pmap->subjectDomainPolicy = obj2; in v2i_POLICY_MAPPINGS()
100 obj1 = obj2 = NULL; in v2i_POLICY_MAPPINGS()
106 ASN1_OBJECT_free(obj2); in v2i_POLICY_MAPPINGS()
/src/contrib/bmake/unit-tests/
H A Dposix1.mk136 lib.a: lib.a(obj1.o) lib.a(obj2.o) lib.a(obj3.o)
153 lib.a(obj2.o): obj2.o
169 obj2.o: obj_2.c obj_2.h dir/obj_1.h
179 obj1.c dir/obj_1.c obj2.c obj_2.c obj3.c:
/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.txt300 struct got_object *obj2 = NULL;
312 err = got_object_open(&obj2, repo, id2);
315 if (obj2->type != GOT_OBJ_TYPE_BLOB) {
324 err = got_object_blob_open(&blob2, repo, obj2, 8192);
333 if (obj2)
334 got_object_close(obj2);
H A Dtest019.right.txt343 struct got_object *obj2 = NULL;
355 err = got_object_open(&obj2, repo, id2);
358 if (obj2->type != GOT_OBJ_TYPE_BLOB) {
367 err = got_object_blob_open(&blob2, repo, obj2, 8192);
376 if (obj2)
377 got_object_close(obj2);
H A Dtest020.left.txt339 struct got_object *obj2 = NULL;
351 err = got_object_open(&obj2, repo, id2);
354 if (obj2->type != GOT_OBJ_TYPE_BLOB) {
363 err = got_object_blob_open(&blob2, repo, obj2, 8192);
372 if (obj2)
373 got_object_close(obj2);
H A Dtest020.right.txt374 struct got_object *obj2 = NULL;
386 err = got_object_open(&obj2, repo, id2);
389 if (obj2->type != GOT_OBJ_TYPE_BLOB) {
398 err = got_object_blob_open(&blob2, repo, obj2, 8192);
407 if (obj2)
408 got_object_close(obj2);
/src/sys/contrib/openzfs/module/zfs/
H A Ddmu_redact.c178 const struct objnode *obj2 = o2; in objnode_compare() local
179 if (obj1->obj < obj2->obj) in objnode_compare()
181 if (obj1->obj > obj2->obj) in objnode_compare()
400 uint64_t obj2, uint64_t off2, uint32_t dbss2) in redact_range_compare() argument
404 create_zbookmark_from_obj_off(&z2, obj2, off2); in redact_range_compare()
/src/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp558 std::string obj2 = errSec->getObjMsg(errOffset); in reportDuplicate() local
566 msg += obj2; 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/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc1016 Uncopyable obj2(0); in TEST() local
1020 EXPECT_FALSE(matcher2.Matches(obj2)); in TEST()