PN_TUPLE_AT        79 core/ast.c       return PN_TUPLE_AT(pn_filenames, t->loc.fileno);
PN_TUPLE_AT        35 core/ast.h         if (PN_IS_TUPLE(endname)) endname = PN_TUPLE_AT(endname, 0); \
PN_TUPLE_AT        37 core/ast.h           if (PN_PART(endname) == AST_EXPR) endname = PN_TUPLE_AT(PN_S(endname, 0), 0); \
PN_TUPLE_AT       112 core/compile.c     v = PN_TUPLE_AT(t->values, PN_INT(v));
PN_TUPLE_AT       163 core/compile.c         potion_bytes_obj_string(P, out, PN_TUPLE_AT(t->values, PN_OP_AT(t->asmb, x).b));
PN_TUPLE_AT       168 core/compile.c         potion_bytes_obj_string(P, out, PN_TUPLE_AT(t->locals, PN_OP_AT(t->asmb, x).b));
PN_TUPLE_AT       185 core/compile.c   if (PN_PART(t->a[n]) == AST_LIST && PN_PART(PN_TUPLE_AT(PN_S(t->a[n],0), 0)) == AST_EXPR) { \
PN_TUPLE_AT       186 core/compile.c     PN test = PN_S(PN_TUPLE_AT(PN_S(t->a[n],0), 0), 0);			\
PN_TUPLE_AT       197 core/compile.c   if (PN_PART(t->a[n]) == AST_EXPR && PN_PART(PN_TUPLE_AT(PN_S(t->a[n],0), 0)) == AST_LIST) { \
PN_TUPLE_AT       198 core/compile.c     PN test = PN_S(PN_TUPLE_AT(PN_S(t->a[n],0), 0), 0);			\
PN_TUPLE_AT       251 core/compile.c #define SRC_TUPLE_AT(src,i)  PN_SRC((PN_TUPLE_AT(PN_S(src,0), i)))
PN_TUPLE_AT       425 core/compile.c 	      PN rhs = PN_TUPLE_AT(f->locals, num);
PN_TUPLE_AT       570 core/compile.c         PN use = PN_TUPLE_AT(PN_S(t,1), 0);
PN_TUPLE_AT       571 core/compile.c         PN name = PN_TUPLE_AT(PN_S(t,1), 1);
PN_TUPLE_AT      1122 core/compile.c     READ_TUPLE(ptr) PN_TUPLE_AT(tup, i) = READ_CONST(pn, ptr); \
PN_TUPLE_AT      1126 core/compile.c     READ_TUPLE(ptr) PN_TUPLE_AT(tup, i) = potion_proto_load(P, (PN)f, pn, &(ptr)); \
PN_TUPLE_AT      1198 core/compile.c     WRITE_TUPLE(tup, ptr) WRITE_CONST(PN_TUPLE_AT(tup, i), ptr); \
PN_TUPLE_AT      1201 core/compile.c     WRITE_TUPLE(tup, ptr) ptr += potion_proto_dumpbc(P, PN_TUPLE_AT(tup, i), \
PN_TUPLE_AT       221 core/table.c     return PN_TUPLE_AT(self, i);
PN_TUPLE_AT       258 core/table.c     return PN_TUPLE_AT(self, 0);
PN_TUPLE_AT       282 core/table.c     return PN_TUPLE_AT(self, len - 1);
PN_TUPLE_AT       329 core/table.c         PN_TUPLE_AT(self, i) = value;
PN_TUPLE_AT       402 core/table.c       PN_TUPLE_AT(tuple, len - i) = x;
PN_TUPLE_AT       135 core/vm-ppc.c    PN val = PN_TUPLE_AT(f->values, op.b);
PN_TUPLE_AT       751 core/vm-x86.c      vPN(Proto) c = (vPN(Proto)) PN_TUPLE_AT(f->protos, 0);
PN_TUPLE_AT       757 core/vm-x86.c  	  DBG_t(":=*%s[%d] ", AS_STR(PN_TUPLE_AT(sig, 2)), i+1);
PN_TUPLE_AT       758 core/vm-x86.c  	  X86_ARGO_IMM(PN_TUPLE_AT(sig, 2), i+1); 	// mov $value, i(%esp) - default
PN_TUPLE_AT       762 core/vm-x86.c  			     ? PN_INT(PN_TUPLE_AT(sig,1)) : 0);
PN_TUPLE_AT       786 core/vm-x86.c    PN proto = PN_TUPLE_AT(p, i);
PN_TUPLE_AT       796 core/vm-x86.c    PN proto = PN_TUPLE_AT(f->protos, op.b);
PN_TUPLE_AT       173 core/vm.c      			   ? potion_type_char(PN_TYPE(PN_TUPLE_AT(s,2)))
PN_TUPLE_AT       175 core/vm.c      			     ? PN_INT(PN_TUPLE_AT(s,1)) : 0);
PN_TUPLE_AT       180 core/vm.c                ary = PN_PUSH(ary, PN_TUPLE_LEN(s) == 3 ? PN_TUPLE_AT(s,2) : potion_type_default(type));
PN_TUPLE_AT       198 core/vm.c            PN_TUPLE_AT(ivars, i) = PN_TUPLE_AT(proto->values, PN_INT(v));
PN_TUPLE_AT       381 core/vm.c            ast = PN_TUPLE_AT(f->debugs, op.b);
PN_TUPLE_AT       420 core/vm.c      	PN fn = PN_TUPLE_AT(pn_filenames, t->loc.fileno);
PN_TUPLE_AT       464 core/vm.c                PN_TUPLE_AT(sig,0) = PN_STR("r"); //regs
PN_TUPLE_AT       465 core/vm.c                PN_TUPLE_AT(sig,1) = PN_STR("l"); //locals
PN_TUPLE_AT       466 core/vm.c                PN_TUPLE_AT(sig,2) = PN_STR("u"); //upvals
PN_TUPLE_AT       467 core/vm.c                PN_TUPLE_AT(sig,3) = PN_STR("v"); //values
PN_TUPLE_AT       468 core/vm.c                PN_TUPLE_AT(sig,4) = PN_STR("p"); //paths
PN_TUPLE_AT       600 core/vm.c            CASE(LOADK,  reg[op.a] = PN_TUPLE_AT(f->values, op.b) )
PN_TUPLE_AT       719 core/vm.c                            ? PN_TUPLE_AT(s, 2)
PN_TUPLE_AT       720 core/vm.c                            : potion_type_default(PN_INT(PN_TUPLE_AT(s,1)));
PN_TUPLE_AT       729 core/vm.c                      PN_TUPLE_AT(argt, i - 2) = reg[op.a + i];
PN_TUPLE_AT       744 core/vm.c      		      ? PN_TUPLE_AT(s, 2)
PN_TUPLE_AT       745 core/vm.c      		      : potion_type_default(PN_INT(PN_TUPLE_AT(s,1)));
PN_TUPLE_AT       805 core/vm.c              proto = PN_TUPLE_AT(f->protos, op.b);
PN_TUPLE_AT       314 lib/aio.c          if (!uv_udp_set_membership(udp, PN_STR_PTR(PN_TUPLE_AT(t, 0)),
PN_TUPLE_AT       315 lib/aio.c      			       PN_STR_PTR(PN_TUPLE_AT(t, 1)),
PN_TUPLE_AT       316 lib/aio.c      			       (uv_membership)PN_INT(PN_TUPLE_AT(t, 2)))) //0 or 1
PN_TUPLE_AT       249 syn/syntax-p5.y                                                             PN_TUPLE_AT(c,0))); }
PN_TUPLE_AT       660 syn/syntax-p5.y     else if (i < PN_TUPLE_LEN(sig) && PN_IS_STR(PN_TUPLE_AT(sig, i+1)))
PN_TUPLE_AT        97 test/api/gc-bench.c   PN_TUPLE_AT(ary, 0) = PN_left = potion_str(P, "left");
PN_TUPLE_AT        98 test/api/gc-bench.c   PN_TUPLE_AT(ary, 1) = PN_right = potion_str(P, "right");
PN_TUPLE_AT       116 test/api/gc-bench.c     PN_TUPLE_AT(ary, i) = PN_NUM(1.0 / i);
PN_TUPLE_AT       142 test/api/gc-bench.c   if (long_lived == 0 || PN_TUPLE_AT(ary, 1000) != PN_NUM(1.0 / 1000))
PN_TUPLE_AT        82 test/api/p2-test.c   PN_TUPLE_AT(tup, 0) = PN_NIL;
PN_TUPLE_AT        83 test/api/p2-test.c   PN_TUPLE_AT(tup, 1) = PN_string;
PN_TUPLE_AT        84 test/api/p2-test.c   PN_TUPLE_AT(tup, 2) = tup;
PN_TUPLE_AT        81 test/api/potion-test.c   PN_TUPLE_AT(tup, 0) = PN_NIL;
PN_TUPLE_AT        82 test/api/potion-test.c   PN_TUPLE_AT(tup, 1) = PN_string;
PN_TUPLE_AT        83 test/api/potion-test.c   PN_TUPLE_AT(tup, 2) = tup;
PN_TUPLE_AT       101 test/api/potion-test.c 		    PN_STR_PTR(potion_send(PN_TUPLE_AT(sig,0), PN_string)));
PN_TUPLE_AT       103 test/api/potion-test.c 		    PN_INT(PN_TUPLE_AT(sig,1)));
PN_TUPLE_AT       105 test/api/potion-test.c 		    PN_STR_PTR(potion_send(PN_TUPLE_AT(sig,2), PN_string)));
PN_TUPLE_AT       107 test/api/potion-test.c 		    PN_INT(PN_TUPLE_AT(sig,3)));