Home
last modified time | relevance | path

Searched refs:o2 (Results 1 – 20 of 20) sorted by relevance

/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_sunpro_sparc64.il7 / "casa [%o2] 0x80, %o1, %o0" and
8 / "casxa [%o2] 0x80, %o1, %o0" do the following:
10 / if ([%o2] == %o1) {
11 / swap(%o0, [%o2]);
13 / %o0 = [%o2];
20 / the arguments are passed in the %o0, %o1, %o2
24 casa [%o2] 0x80, %o1, %o0
31 / the arguments are passed in the %o0, %o1, %o2
35 casxa [%o2] 0x80, %o1, %o0
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlvm.h21 #define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2)) argument
23 #define luaV_rawequalobj(o1,o2) equalobj(NULL,o1,o2) argument
H A Dlapi.c285 StkId o2 = index2addr(L, index2); in lua_rawequal() local
286 return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0; in lua_rawequal()
292 StkId o2; /* 2nd operand */ in lua_arith() local
302 o2 = L->top - 1; in lua_arith()
303 if (ttisnumber(o1) && ttisnumber(o2)) { in lua_arith()
304 setnvalue(o1, luaO_arith(op, nvalue(o1), nvalue(o2))); in lua_arith()
314 StkId o1, o2; in lua_compare() local
318 o2 = index2addr(L, index2); in lua_compare()
319 if (isvalid(o1) && isvalid(o2)) { in lua_compare()
321 case LUA_OPEQ: i = equalobj(L, o1, o2); break; in lua_compare()
[all …]
H A Dlobject.h148 #define ttisequal(o1,o2) (rttype(o1) == rttype(o2)) argument
367 #define ttisequal(o1,o2) \ argument
368 (ttisnumber(o1) ? ttisnumber(o2) : (tt_(o1) == tt_(o2)))
H A Dlcode.c732 int o2 = (op != OP_UNM && op != OP_LEN) ? luaK_exp2RK(fs, e2) : 0; in codearith() local
734 if (o1 > o2) { in codearith()
742 e1->u.info = luaK_codeABC(fs, op, 0, o1, o2); in codearith()
752 int o2 = luaK_exp2RK(fs, e2); in codecomp() local
757 temp = o1; o1 = o2; o2 = temp; /* o1 <==> o2 */ in codecomp()
760 e1->u.info = condjump(fs, op, cond, o1, o2); in codecomp()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlvm.h21 #define equalobj(L,o1,o2) \ argument
22 (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
H A Dlapi.c281 StkId o2 = index2adr(L, index2); in lua_rawequal() local
282 return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0 in lua_rawequal()
283 : luaO_rawequalObj(o1, o2); in lua_rawequal()
288 StkId o1, o2; in lua_equal() local
292 o2 = index2adr(L, index2); in lua_equal()
293 i = (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0 : equalobj(L, o1, o2); in lua_equal()
300 StkId o1, o2; in lua_lessthan() local
304 o2 = index2adr(L, index2); in lua_lessthan()
305 i = (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0 in lua_lessthan()
306 : luaV_lessthan(L, o1, o2); in lua_lessthan()
H A Dlobject.h162 { const TValue *o2=(obj2); TValue *o1=(obj1); \
163 o1->value = o2->value; o1->tt=o2->tt; \
H A Dlcode.c657 int o2 = (op != OP_UNM && op != OP_LEN) ? luaK_exp2RK(fs, e2) : 0; in codearith() local
659 if (o1 > o2) { in codearith()
667 e1->u.s.info = luaK_codeABC(fs, op, 0, o1, o2); in codearith()
676 int o2 = luaK_exp2RK(fs, e2); in codecomp() local
681 temp = o1; o1 = o2; o2 = temp; /* o1 <==> o2 */ in codecomp()
684 e1->u.s.info = condjump(fs, op, cond, o1, o2); in codecomp()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_freeobjects.ksh59 o2=$(ls -li $f2 | awk '{print $1}')
62 if [[ $o2 -ne $(( $o1 + 1 )) ]] || [[ $o3 -ne $(( $o2 + 1 )) ]]; then
/f-stack/freebsd/arm64/include/
H A Dbus.h296 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
297 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
473 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
474 __bs_copy(1, t, h1, o1, h2, o2, c)
475 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
476 __bs_copy(2, t, h1, o1, h2, o2, c)
477 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
478 __bs_copy(4, t, h1, o1, h2, o2, c)
479 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
480 __bs_copy(8, t, h1, o1, h2, o2, c)
/f-stack/freebsd/arm/include/
H A Dbus.h267 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
268 (*(t)->__bs_opname(c,sz))((t), h1, o1, h2, o2, cnt)
465 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
466 __bs_copy(1, t, h1, o1, h2, o2, c)
467 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
468 __bs_copy(2, t, h1, o1, h2, o2, c)
469 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
470 __bs_copy(4, t, h1, o1, h2, o2, c)
471 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
472 __bs_copy(8, t, h1, o1, h2, o2, c)
/f-stack/freebsd/mips/include/
H A Dbus.h253 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
254 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
429 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
430 __bs_copy(1, t, h1, o1, h2, o2, c)
431 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
432 __bs_copy(2, t, h1, o1, h2, o2, c)
433 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
434 __bs_copy(4, t, h1, o1, h2, o2, c)
435 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
436 __bs_copy(8, t, h1, o1, h2, o2, c)
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-higig.h181 } o2; member
264 } o2; member
/f-stack/freebsd/x86/include/
H A Dbus.h1085 #define bus_space_copy_region_stream_1(t, h1, o1, h2, o2, c) \ argument
1086 bus_space_copy_region_1((t), (h1), (o1), (h2), (o2), (c))
1087 #define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \ argument
1088 bus_space_copy_region_2((t), (h1), (o1), (h2), (o2), (c))
1089 #define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \ argument
1090 bus_space_copy_region_4((t), (h1), (o1), (h2), (o2), (c))
/f-stack/app/redis-5.0.5/src/
H A Dt_set.c783 robj *o1 = *(robj**)s1, *o2 = *(robj**)s2; in qsortCompareSetsByRevCardinality() local
785 unsigned long second = o2 ? setTypeSize(o2) : 0; in qsortCompareSetsByRevCardinality()
H A Dserver.c516 const robj *o1 = key1, *o2 = key2; in dictObjKeyCompare() local
517 return dictSdsKeyCompare(privdata,o1->ptr,o2->ptr); in dictObjKeyCompare()
536 robj *o1 = (robj*) key1, *o2 = (robj*) key2; in dictEncObjKeyCompare() local
540 o2->encoding == OBJ_ENCODING_INT) in dictEncObjKeyCompare()
541 return o1->ptr == o2->ptr; in dictEncObjKeyCompare()
544 o2 = getDecodedObject(o2); in dictEncObjKeyCompare()
545 cmp = dictSdsKeyCompare(privdata,o1->ptr,o2->ptr); in dictEncObjKeyCompare()
547 decrRefCount(o2); in dictEncObjKeyCompare()
H A Dserver.h1778 void hashTypeTryObjectEncoding(robj *subject, robj **o1, robj **o2);
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddmu_redact.c173 objnode_compare(const void *o1, const void *o2) in objnode_compare() argument
176 const struct objnode *obj2 = o2; in objnode_compare()
H A Dzil.c1880 const uint64_t o2 = ((itx_async_node_t *)x2)->ia_foid; in zil_aitx_compare() local
1882 return (TREE_CMP(o1, o2)); in zil_aitx_compare()