Searched refs:where (Results 1 - 25 of 327) sorted by relevance

1234567891011>>

/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_scan.c55 #define startcomment(where) (where[0] == '/' && where[1] == '*')
56 #define endcomment(where) (where[-1] == '*' && where[0] == '/')
164 if (*where == 0) {
174 *where = 0;
189 where = curline;
190 } else if (isspace(*where)) {
[all...]
/freebsd-10-stable/contrib/binutils/gas/
H A Doutput-file.h22 void output_file_append (char *where, long length, char *filename);
H A Dinput-file.h38 * input_file_give_next_buffer(where) Call once to get each new buffer.
59 char *input_file_give_next_buffer (char *where);
H A Dobj.h25 void obj_emit_relocations (char **where, fixS * fixP,
27 void obj_emit_strings (char **where);
28 void obj_emit_symbols (char **where, symbolS * symbols);
37 void obj_symbol_to_chars (char **where, symbolS * symbolP);
/freebsd-10-stable/contrib/gdb/gdb/gdbserver/
H A Dmem-break.h32 void set_breakpoint_at (CORE_ADDR where,
43 void reinsert_breakpoint (CORE_ADDR where);
47 void uninsert_breakpoint (CORE_ADDR where);
/freebsd-10-stable/usr.sbin/kldxref/
H A Def_i386.c47 Elf_Addr *where, addr, addend; local
56 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
63 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
72 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
76 addend = *where;
81 *where = addr;
86 *where = addr;
90 *where = addr;
H A Def_amd64.c47 Elf64_Addr *where, val; local
57 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
64 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
73 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
81 addend = *(Elf32_Addr *)where;
84 addend = *where;
95 *where = val;
100 where32 = (Elf32_Addr *)where;
105 *where
[all...]
H A Def_powerpc.c50 Elf_Addr *where, addend; local
58 where = (Elf_Addr *) ((Elf_Off)dest - dataoff + rela->r_offset);
63 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
68 *where = relbase + addend;
/freebsd-10-stable/contrib/subversion/subversion/svnserve/
H A Dlog-escape.c63 unsigned char *where)
68 *where++ = prefix;
69 *where++ = c2x_table[what >> 4];
70 *where++ = c2x_table[what & 0xf];
71 return where;
62 c2x(unsigned what, unsigned char prefix, unsigned char *where) argument
/freebsd-10-stable/usr.bin/finger/
H A Dfinger.h50 struct where *whead, *wtail; /* list of where user is or has been */
55 typedef struct where { struct
56 struct where *next; /* next place user is or has been */
/freebsd-10-stable/libexec/rtld-elf/arm/
H A Dreloc.c93 Elf_Addr *where; local
109 where = (Elf_Addr *)(relocbase + rel->r_offset);
111 *where += (Elf_Addr)relocbase;
122 load_ptr(void *where) argument
126 memcpy(&res, where, sizeof(res));
132 store_ptr(void *where, Elf_Addr val) argument
135 memcpy(where, &val, sizeof(val));
142 Elf_Addr *where; local
148 where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
162 addend = *where;
362 Elf_Addr *where; local
383 Elf_Addr *where; local
425 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *defobj, const Obj_Entry *obj, const Elf_Rel *rel) argument
[all...]
/freebsd-10-stable/contrib/less/
H A Dprompt.c162 curr_byte(where)
163 int where;
167 pos = position(where);
168 while (pos == NULL_POSITION && where >= 0 && where < sc_height-1)
169 pos = position(++where);
182 cond(c, where)
184 int where;
193 return (curr_byte(where) != NULL_POSITION);
219 return (curr_byte(where) !
484 int where; local
[all...]
/freebsd-10-stable/sys/boot/common/
H A Dreloc_elf.c47 * target relocation base for the section (i.e. it corresponds to where
81 Elf64_Addr *where, val;
90 where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
99 where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
109 if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
113 addend = *where;
125 *where = val;
130 *where = val;
139 Elf_Addr addend, addr, *where, va
[all...]
/freebsd-10-stable/lib/libstand/
H A Dlseek.c69 lseek(int fd, off_t offset, int where) argument
83 switch (where) {
101 * handle it would fail in the same cases where the non-readahead
105 if (f->f_ralen != 0 && where != SEEK_END) {
109 switch (where) {
132 if (where == SEEK_CUR)
140 return (f->f_ops->fo_seek)(f, offset, where);
/freebsd-10-stable/contrib/file/src/
H A Dis_tar.c137 from_oct(const char *where, size_t digs) argument
144 while (isspace((unsigned char)*where)) { /* Skip spaces */
145 where++;
150 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */
151 value = (value << 3) | (*where++ - '0');
155 if (digs > 0 && *where && !isspace((unsigned char)*where))
/freebsd-10-stable/contrib/binutils/bfd/
H A Dbfdio.c133 if (abfd->where + get > bim->size)
135 if (bim->size < (bfd_size_type) abfd->where)
138 get = bim->size - abfd->where;
141 memcpy (ptr, bim->buffer + abfd->where, (size_t) get);
142 abfd->where += get;
151 abfd->where += nread;
166 if (abfd->where + size > bim->size)
171 bim->size = abfd->where + size;
184 memcpy (bim->buffer + abfd->where, ptr, (size_t) size);
185 abfd->where
[all...]
/freebsd-10-stable/sys/mips/mips/
H A Delf_machdep.c175 Elf32_Addr *where = (Elf32_Addr *)NULL; local
192 where = (Elf32_Addr *) (relocbase + rel->r_offset);
197 addend = *(Elf64_Addr *)where;
200 addend = *where;
207 where = (Elf32_Addr *) (relocbase + rela->r_offset);
225 if (*where != addr)
226 *where = (Elf32_Addr)addr;
241 addr += ((Elf_Addr)where & 0xf0000000) | addend;
244 *where &= ~0x03ffffff;
245 *where |
[all...]
/freebsd-10-stable/libexec/rtld-elf/sparc64/
H A Dreloc.c335 Elf_Addr *where; local
341 where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
342 where32 = (Elf_Word *)where;
382 *where = (Elf_Addr)(obj->relocbase + value);
431 value -= (Elf_Addr)where;
463 ptr = (char *)where;
477 *where &= ~mask;
478 *where |= value;
495 Elf_Addr *where;
503 where
540 Elf_Addr *where; local
581 Elf_Word *where; local
[all...]
/freebsd-10-stable/sys/amd64/amd64/
H A Delf_machdep.c165 Elf64_Addr *where, val; local
177 where = (Elf_Addr *) (relocbase + rel->r_offset);
185 addend = *(Elf32_Addr *)where;
188 addend = *where;
194 where = (Elf_Addr *) (relocbase + rela->r_offset);
213 if (*where != val)
214 *where = val;
221 where32 = (Elf32_Addr *)where;
222 val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
232 where32 = (Elf32_Addr *)where;
[all...]
/freebsd-10-stable/libexec/rtld-elf/mips/
H A Dreloc.c98 load_ptr(void *where, size_t len) argument
102 if (__predict_true(((uintptr_t)where & (len - 1)) == 0)) {
105 return *(Elf_Sxword *)where;
107 return *(Elf_Sword *)where;
112 (void)memcpy(&val, where, len);
115 (void)memcpy((uint8_t *)((&val)+1) - len, where, len);
121 store_ptr(void *where, Elf_Sxword val, size_t len) argument
123 if (__predict_true(((uintptr_t)where & (len - 1)) == 0)) {
126 *(Elf_Sxword *)where = val;
130 *(Elf_Sword *)where
147 Elf_Addr *where; local
393 void *where; local
611 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *defobj, const Obj_Entry *obj, const Elf_Rel *rel) argument
[all...]
/freebsd-10-stable/libexec/rtld-elf/i386/
H A Dreloc.c133 Elf_Addr *where, symval, add; local
193 where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
199 *where += symval;
207 *where += symval - (Elf_Addr)where;
224 *where = symval;
227 *where += (Elf_Addr)obj->relocbase;
249 *where += add;
251 *where -= add;
254 *where
281 Elf_Addr *where/*, val*/; local
314 Elf_Addr *where, target; local
352 Elf_Addr *where, target; local
382 Elf_Addr *where, target; local
[all...]
/freebsd-10-stable/libexec/rtld-elf/powerpc/
H A Dreloc.c131 Elf_Addr *where; local
152 where = (Elf_Addr *)(relocbase + rela->r_offset);
153 *where = (Elf_Addr)(relocbase + rela->r_addend);
165 Elf_Addr *where = (Elf_Addr *)(obj->relocbase + rela->r_offset); local
187 if (*where != tmp) {
188 *where = tmp;
196 if (*where != tmp) {
197 *where = tmp;
230 *where = (Elf_Addr) defobj->tlsindex;
257 *(Elf_Addr **)where
339 Elf_Word *where = (Elf_Word *)(obj->relocbase + rela->r_offset); local
431 Elf_Addr *where; local
[all...]
/freebsd-10-stable/usr.sbin/pkg_install/create/
H A Dpl.c64 const char *where = home; local
75 where = (p->name == NULL) ? prefix : p->name;
91 BaseDir && where && where[0] == '/' ? BaseDir : "", where, p->name);
139 const char *where = home; local
178 where = p->name == NULL ? prefix : p->name;
244 BaseDir && where && where[0] == '/' ? BaseDir : "", where,
[all...]
/freebsd-10-stable/sys/i386/i386/
H A Delf_machdep.c176 Elf_Addr *where; local
187 where = (Elf_Addr *) (relocbase + rel->r_offset);
188 addend = *where;
194 where = (Elf_Addr *) (relocbase + rela->r_offset);
206 if (*where != addr)
207 *where = addr;
222 if (*where != addr)
223 *where = addr;
230 addr += addend - (Elf_Addr)where;
231 if (*where !
[all...]
/freebsd-10-stable/contrib/binutils/binutils/
H A Dcoffgrok.c203 struct coff_where *where = local
205 where->offset = sym->n_value;
213 where->where = coff_where_member_of_struct;
214 where->offset = sym->n_value / 8;
215 where->bitoffset = sym->n_value % 8;
216 where->bitsize = rawsyms[i + 1].u.auxent.x_sym.x_misc.x_lnsz.x_size;
219 where->where = coff_where_member_of_enum;
223 where
[all...]

Completed in 119 milliseconds

1234567891011>>