Searched refs:where (Results 51 - 75 of 322) sorted by relevance

1234567891011>>

/freebsd-11.0-release/sys/kern/
H A Dimgact_gzip.c55 int where; member in struct:imgact_gzip
143 printf("Inflate_error=%d igz.error=%d where=%d\n",
144 error, igz.error, igz.where);
187 gz->where = __LINE__;
203 gz->where = __LINE__;
219 gz->where = __LINE__;
231 * However, in cases where the vnode lock is external, such as nullfs,
243 gz->where = __LINE__;
260 gz->where = __LINE__;
276 gz->where
[all...]
/freebsd-11.0-release/usr.sbin/mptable/
H A Dmptable.c120 static void apic_probe( u_int32_t* paddr, int* where );
124 static void MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp );
172 int where; local
217 apic_probe( &paddr, &where );
218 if ( where <= 0 ) {
227 whereStrings[ where - 1 ], paddr );
232 MPFloatingPointer( paddr, where, &mpfps );
257 apic_probe( u_int32_t* paddr, int* where )
285 *where = 1;
309 *where
401 MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp ) argument
[all...]
/freebsd-11.0-release/sys/powerpc/powerpc/
H A Delf32_machdep.c178 Elf_Addr *where; local
192 where = (Elf_Addr *) ((uintptr_t)relocbase + rela->r_offset);
211 *where = elf_relocaddr(lf, addr + addend);
220 * (i.e. .rodata) in rela, where in reality they
235 * (i.e. .rodata) in rela, where in reality they
246 *where = elf_relocaddr(lf, relocbase + addend);
262 Elf_Addr *where; local
285 where = (Elf_Addr *)(relocbase + rela->r_offset);
286 *where = (Elf_Addr)(relocbase + rela->r_addend);
/freebsd-11.0-release/contrib/amd/libamu/
H A Dmisc_rpc.c83 pickup_rpc_reply(voidp pkt, int len, voidp where, XDRPROC_T_TYPE where_xdr) argument
95 reply_msg.acpted_rply.ar_results.where = where;
/freebsd-11.0-release/contrib/apr/file_io/unix/
H A Dseek.c52 APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile, apr_seek_where_t where, apr_off_t *offset)
64 switch (where) {
87 rv = lseek(thefile->filedes, *offset, where);
/freebsd-11.0-release/contrib/compiler-rt/lib/BlocksRuntime/
H A Druntime.c103 static unsigned long int latching_incr_long(unsigned long int *where) {
105 unsigned long int old_value = *(volatile unsigned long int *)where;
109 if (OSAtomicCompareAndSwapLong(old_value, old_value+1, (volatile long int *)where)) {
116 static int latching_incr_int(int *where) { argument
118 int old_value = *(volatile int *)where;
122 if (OSAtomicCompareAndSwapInt(old_value, old_value+1, (volatile int *)where)) {
129 static int latching_decr_long(unsigned long int *where) {
131 unsigned long int old_value = *(volatile int *)where;
138 if (OSAtomicCompareAndSwapLong(old_value, old_value-1, (volatile long int *)where)) {
145 static int latching_decr_int(int *where) { argument
[all...]
/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.c111 args->where.name = "pinky-blue";
112 args->where.dir.data.data_len = rootfh->fhandle3_len;
113 args->where.dir.data.data_val = rootfh->fhandle3_val;
152 args->where.dir.data.data_len = rootfh->fhandle3_len;
153 args->where.dir.data.data_val = rootfh->fhandle3_val;
154 args->where.name = "cookie";
163 args->where.dir.data.data_len = rootfh->fhandle3_len;
164 args->where.dir.data.data_val = rootfh->fhandle3_val;
165 args->where.name = "pookie";
263 args->where
[all...]
/freebsd-11.0-release/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in335 my $where = $ff->fetch( to => '/tmp' );
337 if ($where) {
340 if ( verifySHA($where, $VERBOSE )) {
344 logger("warning", "Downloaded file $where rejected -- saved for diagnosis");
369 if ( move $where, $LEAPFILE ) {
372 logger("error", "Install $where => $LEAPFILE failed -- saved for diagnosis: $!");
/freebsd-11.0-release/contrib/binutils/bfd/
H A Dihex.c145 bfd_vma where; member in struct:ihex_data_list
679 n->where = section->lma + offset;
686 && n->where >= tdata->tail->where)
697 *pp != NULL && (*pp)->where < n->where;
766 bfd_vma where; local
770 where = l->where;
783 if (where > segbas
[all...]
H A Dcache.c166 kill->where = real_ftell ((FILE *) kill->iostream);
231 && real_fseek ((FILE *) abfd->iostream, abfd->where, SEEK_SET) != 0
247 return abfd->where;
315 cache_bwrite (struct bfd *abfd, const void *where, file_ptr nbytes) argument
321 nwrite = fwrite (where, 1, nbytes, f);
/freebsd-11.0-release/contrib/binutils/binutils/
H A Dsrconv.c542 rl.secn = ref->where->section->number;
545 rl.addend = ref->where->offset - ref->where->section->address;
552 rl.secn = ref->where->section->number;
555 rl.addend = -ref->where->section->address;
924 symbol->where->section,
927 wr_dps_start (sfile, symbol->where->section,
930 walk_tree_scope (symbol->where->section,
935 wr_dps_end (symbol->where->section,
938 wr_dps_end (symbol->where
[all...]
/freebsd-11.0-release/gnu/usr.bin/grep/
H A Dobstack.h76 so we just point to it where it lies. No moving of chars is
167 char *next_free; /* where to add next char to current object */
386 # define obstack_grow(OBSTACK,where,length) \
392 _obstack_memcpy (__o->next_free, (char *) (where), __len); \
396 # define obstack_grow0(OBSTACK,where,length) \
402 _obstack_memcpy (__o->next_free, (char *) (where), __len); \
453 # define obstack_copy(OBSTACK,where,length) \
456 obstack_grow (__h, (where), (length)); \
459 # define obstack_copy0(OBSTACK,where,length) \
462 obstack_grow0 (__h, (where), (lengt
[all...]
/freebsd-11.0-release/contrib/gdb/include/
H A Dobstack.h79 so we just point to it where it lies. No moving of chars is
174 char *next_free; /* where to add next char to current object */
392 # define obstack_grow(OBSTACK,where,length) \
398 _obstack_memcpy (__o->next_free, (where), __len); \
402 # define obstack_grow0(OBSTACK,where,length) \
408 _obstack_memcpy (__o->next_free, (where), __len); \
468 # define obstack_copy(OBSTACK,where,length) \
471 obstack_grow (__h, (where), (length)); \
474 # define obstack_copy0(OBSTACK,where,length) \
477 obstack_grow0 (__h, (where), (lengt
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A Dilist.h366 // circularly linked list where we snip the 'next' link from the sentinel node
461 iterator insert(iterator where, NodeTy *New) { argument
462 NodeTy *CurNode = where.getNodePtrUnchecked();
477 iterator insertAfter(iterator where, NodeTy *New) { argument
481 return insert(++where, New);
499 // strictly required, but this catches errors where a node is removed from
517 iterator erase(iterator where) { argument
518 this->deleteNode(remove(where));
519 return where;
620 template<class InIt> void insert(iterator where, InI argument
625 splice(iterator where, iplist &L2) argument
629 splice(iterator where, iplist &L2, iterator first) argument
634 splice(iterator where, iplist &L2, iterator first, iterator last) argument
637 splice(iterator where, iplist &L2, NodeTy &N) argument
640 splice(iterator where, iplist &L2, NodeTy *N) argument
742 insert(iterator where, const NodeTy &val) argument
751 insert(iterator where, size_type count, const NodeTy &val) argument
[all...]
/freebsd-11.0-release/contrib/gdb/gdb/gdbserver/
H A Dmem-break.c52 set_breakpoint_at (CORE_ADDR where, void (*handler) (CORE_ADDR)) argument
62 (*the_target->read_memory) (where, bp->old_data,
64 (*the_target->write_memory) (where, breakpoint_data,
67 bp->pc = where;
103 find_breakpoint_at (CORE_ADDR where) argument
109 if (bp->pc == where)
/freebsd-11.0-release/contrib/less/
H A Dlinenum.c449 * The argument "where" tells which line is to be considered
453 currline(where)
454 int where;
460 pos = position(where);
462 while (pos == NULL_POSITION && where >= 0 && where < sc_height)
463 pos = position(++where);
/freebsd-11.0-release/usr.bin/patch/
H A Dpatch.c151 LINENUM where = 0, newwhere, fuzz, mymaxfuzz; local
240 /* find out where all the lines are */
262 where = locate_hunk(fuzz);
263 if (hunk == 1 && where == 0 && !force && !reverse_seen) {
272 where = locate_hunk(fuzz);
273 if (where == 0) {
301 where = 0;
309 } while (!skip_rest_of_patch && where == 0 &&
328 } else if (where == 0) {
335 apply_hunk(where);
831 apply_hunk(LINENUM where) argument
[all...]
/freebsd-11.0-release/contrib/binutils/gas/
H A Dcgen.c251 gas_cgen_record_fixup (frag, where, insn, length, operand, opinfo, symbol, offset)
253 int where;
265 fixP = fix_new (frag, where, length / 8, symbol, offset,
292 gas_cgen_record_fixup_exp (frag, where, insn, length, operand, opinfo, exp)
294 int where;
305 fixP = fix_new_exp (frag, where, length / 8, exp,
561 We use (f - frag_now->fr_literal) to compute where we are and we
874 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; local
932 cgen_get_insn_value (cd, (unsigned char *) where,
938 cgen_put_insn_value (cd, (unsigned char *) where,
[all...]
/freebsd-11.0-release/sys/cddl/contrib/opensolaris/common/avl/
H A Davl.c89 * adjacent to where a new value would be inserted in the tree. The value
226 avl_nearest(avl_tree_t *tree, avl_index_t where, int direction) argument
228 int child = AVL_INDEX2CHILD(where);
229 avl_node_t *node = AVL_INDEX2NODE(where);
251 * *where (if not NULL) is set to indicate the insertion point
255 avl_find(avl_tree_t *tree, const void *value, avl_index_t *where) argument
272 if (where != NULL)
273 *where = 0;
281 if (where != NULL)
282 *where
482 avl_insert(avl_tree_t *tree, void *new_data, avl_index_t where) argument
634 avl_index_t where; local
[all...]
/freebsd-11.0-release/contrib/gcc/
H A Dipa-inline.c235 /* ??? Wrong for self recursive functions or cases where we decide to not
340 We call recursive inlining all cases where same function appears more than
379 We also should distinguish hot and cold calls where the cold calls are
489 lookup_recursive_calls (struct cgraph_node *node, struct cgraph_node *where, argument
494 for (e = where->callees; e; e = e->next_callee)
505 for (e = where->callees; e; e = e->next_callee)
755 struct cgraph_node *where; local
793 where = edge->caller;
794 while (where->global.inlined_to)
796 if (where
[all...]
/freebsd-11.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_rlock.c108 avl_index_t where; local
158 rl = avl_find(tree, new, &where);
162 rl = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
166 rl = (rl_t *)avl_nearest(tree, where, AVL_BEFORE);
171 avl_insert(tree, new, where);
271 zfs_range_add_reader(avl_tree_t *tree, rl_t *new, rl_t *prev, avl_index_t where) argument
301 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
305 avl_insert(tree, new, where);
360 avl_index_t where; local
368 prev = avl_find(tree, new, &where);
[all...]
H A Drange_tree.c166 avl_index_t where; local
176 rs = avl_find(&rt->rt_root, &rsearch, &where);
188 rs_before = avl_nearest(&rt->rt_root, where, AVL_BEFORE);
189 rs_after = avl_nearest(&rt->rt_root, where, AVL_AFTER);
227 avl_insert(&rt->rt_root, rs, where);
241 avl_index_t where; local
252 rs = avl_find(&rt->rt_root, &rsearch, &where);
306 avl_index_t where; local
315 return (avl_find(&rt->rt_root, &rsearch, &where));
H A Ddsl_deadlist.c218 avl_index_t where; local
236 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
238 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
382 avl_index_t where; local
395 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
401 avl_nearest(&dl->dl_tree, where, AVL_AFTER) == NULL);
423 avl_index_t where; local
441 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
443 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
503 avl_index_t where; local
[all...]
/freebsd-11.0-release/sys/sparc64/sparc64/
H A Delf_machdep.c318 Elf_Addr *where; local
327 where = (Elf_Addr *)(relocbase + rela->r_offset);
328 *where = elf_relocaddr(lf, rela->r_addend + relocbase);
340 Elf_Addr *where; local
351 where = (Elf_Addr *)(relocbase + rela->r_offset);
352 where32 = (Elf_Word *)where;
388 value -= (Elf_Addr)where;
401 *where &= ~mask;
402 *where |= value;
/freebsd-11.0-release/sys/dev/nxge/
H A Dxge-osdep.h427 * @where: Offset in the PCI configuration space.
431 * specified offset = @where.
434 #define xge_os_pci_read8(pdev, cfgh, where, val) \
435 (*(val) = pci_read_config(pdev->device, where, 1))
443 * @where: Offset in the PCI configuration space.
449 #define xge_os_pci_write8(pdev, cfgh, where, val) \
450 pci_write_config(pdev->device, where, val, 1)
457 * @where: Offset in the PCI configuration space.
464 #define xge_os_pci_read16(pdev, cfgh, where, val) \
465 (*(val) = pci_read_config(pdev->device, where,
[all...]

Completed in 310 milliseconds

1234567891011>>