Searched refs:previous (Results 51 - 75 of 137) sorted by relevance

123456

/freebsd-current/sys/dev/ofw/
H A Dofw_fdt.c372 * -1: package or previous property does not exist
377 ofw_fdt_nextprop(ofw_t ofw, phandle_t package, const char *previous, char *buf, argument
388 if (previous == NULL)
396 /* Skip until we find 'previous', then bail out */
397 if (strcmp(name, previous) != 0)
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dlstate.h72 struct CallInfo *previous, *next; /* dynamic call link */ member in struct:CallInfo
98 luaV_execute of previous call */
H A Dlstate.c112 ci->previous = L->ci;
140 ci->next = ci->previous = NULL;
H A Dldebug.c93 for (ci = L->ci; level > 0 && ci != &L->base_ci; ci = ci->previous)
257 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous))
258 ar->namewhat = getfuncname(L, ci->previous, &ar->name);
H A Dlparser.c40 struct BlockCnt *previous; /* chain */ member in struct:BlockCnt
259 while (bl->nactvar > level) bl = bl->previous;
441 bl->previous = fs->bl;
472 if (bl->previous && bl->upval) {
480 fs->bl = bl->previous;
485 if (bl->previous) /* inner block? */
1107 ** upvalue/local variable is begin used in a previous assignment to a
1109 ** use this safe copy in the previous assignment.
1115 for (; lh; lh = lh->prev) { /* check all previous assignments */
1121 lh->v.u.ind.t = extra; /* previous assignmen
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Ddeptgt-makeflags.mk111 .MAKEFLAGS: VAR=previous
113 .if ${VAR} != "previous"
H A Dvarmod-remember.mk30 # value of '_' from the previous evaluation in command line scope.
H A Dvar-op-default.mk14 # ignores the new variable value, preserving the previous "default value".
H A Dvarparse-undef-partial.mk36 # In contrast to the previous line, evaluating the original LIST again now
/freebsd-current/stand/libofw/
H A Dopenfirm.c294 OF_nextprop(phandle_t package, const char *previous, char *buf) argument
301 cell_t previous; member in struct:__anon20
308 args.previous = IN(previous);
/freebsd-current/sys/amd64/linux/
H A Dlinux_locore.asm86 .previous
/freebsd-current/sys/amd64/linux32/
H A Dlinux32_locore.asm129 .previous
/freebsd-current/sys/i386/linux/
H A Dlinux_locore.asm123 .previous
/freebsd-current/contrib/lua/src/
H A Dlstate.c111 ci->previous = L->ci;
151 next2->previous = ci;
191 ci->next = ci->previous = NULL;
H A Dlstate.h180 struct CallInfo *previous, *next; /* dynamic call link */ member in struct:CallInfo
H A Dlcode.c111 ** Return the previous instruction of the current code. If there
113 ** previous one, return an invalid instruction (to avoid wrong
119 return &fs->f->code[fs->pc - 1]; /* previous instruction */
126 ** Create a OP_LOADNIL instruction, but try to optimize: if the previous
128 ** range of previous instruction instead of emitting a new one. (For
133 Instruction *previous = previousinstruction(fs); local
134 if (GET_OPCODE(*previous) == OP_LOADNIL) { /* previous is LOADNIL? */
135 int pfrom = GETARG_A(*previous); /* get previous rang
[all...]
/freebsd-current/lib/libc/db/test/btree.tests/
H A Dmain.c76 void previous(DB *, char **);
102 "p", 0, 0, previous, "previous", "move cursor back one record",
679 previous(db, argv) function
690 perror("previous/seq");
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h57 int next(int previous) const override {
58 return hwloc_bitmap_next(mask, previous);
402 int next(int previous) const override {
403 int retval = previous + 1;
612 int next(int previous) const override {
613 int retval = previous + 1;
H A Dz_Windows_NT-586_asm.asm149 and eax, 1 ; sign extend previous instruction
174 and eax, 1 ; sign extend previous instruction
199 and eax, 1 ; sign extend previous instruction
232 and eax, 1 ; sign extend previous instruction
735 and rax, 1 ; sign extend previous instruction
763 and rax, 1 ; sign extend previous instruction
791 and rax, 1 ; sign extend previous instruction
819 and rax, 1 ; sign extend previous instruction
1265 sub rdx, 8 ; decrement p_argv pointer to previous parm
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_ppc64.S15 .previous
158 .previous
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dconfig_file.c578 krb5_config_binding *d, *previous = NULL; local
598 if (previous)
599 previous->next = d;
601 previous = d;
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_gcm_hw_s390x.inc160 /* check if there is any existing aad data from a previous add */
245 /* previous call already encrypted/decrypted its remainder,
/freebsd-current/sys/powerpc/include/
H A Dasm.h112 .previous; \
/freebsd-current/usr.sbin/autofs/
H A Dcommon.c273 * Move (reparent) node 'n' to make it sibling of 'previous', placed
277 node_move_after(struct node *n, struct node *previous) argument
281 n->n_parent = previous->n_parent;
282 TAILQ_INSERT_AFTER(&previous->n_parent->n_children, previous, n, n_next);
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm87 C<preprocessor()> returns the previous default preprocessor function,

Completed in 522 milliseconds

123456