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

1234567891011>>

/freebsd-11-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-11-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-11-stable/release/scripts/
H A Drelnotes-search.sh54 where="${OPTARG##-r*}"
55 [ -z "${where}" ] && usage
56 if [ -e "${where}" ]; then
58 echo " (${where})"
87 [ -z "${where}" ] && where=/dev/stdout
128 ${svn} log ${rev} --search 'Relnotes:*[A-Za-z0-9]*' ${1} > ${where}
/freebsd-11-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-11-stable/usr.sbin/kldxref/
H A Def_i386.c49 Elf_Addr *where, addr, addend; local
58 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
65 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
74 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
78 addend = *where;
83 *where = addr;
88 *where = addr;
92 *where = addr;
H A Def_amd64.c49 Elf64_Addr *where, val; local
59 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
66 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
75 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
83 addend = *(Elf32_Addr *)where;
86 addend = *where;
97 *where = val;
102 where32 = (Elf32_Addr *)where;
107 *where
[all...]
H A Def_aarch64.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;
H A Def_powerpc.c52 Elf_Addr *where, addend; local
60 where = (Elf_Addr *) ((Elf_Off)dest - dataoff + rela->r_offset);
65 if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
70 *where = relbase + addend;
/freebsd-11-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-11-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-11-stable/libexec/rtld-elf/arm/
H A Dreloc.c138 Elf_Addr *where; local
154 where = (Elf_Addr *)(relocbase + rel->r_offset);
156 *where += (Elf_Addr)relocbase;
167 load_ptr(void *where) argument
171 memcpy(&res, where, sizeof(res));
177 store_ptr(void *where, Elf_Addr val) argument
180 memcpy(where, &val, sizeof(val));
187 Elf_Addr *where; local
193 where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
207 addend = *where;
405 Elf_Addr *where; local
426 Elf_Addr *where; local
468 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *defobj, const Obj_Entry *obj, const Elf_Rel *rel) argument
[all...]
/freebsd-11-stable/stand/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;
126 *where = val;
131 *where = val;
143 Elf_Addr addend, addr, *where, va
[all...]
/freebsd-11-stable/stand/libsa/
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-11-stable/contrib/file/src/
H A Dis_tar.c144 from_oct(const char *where, size_t digs) argument
151 while (isspace(CAST(unsigned char, *where))) { /* Skip spaces */
152 where++;
157 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */
158 value = (value << 3) | (*where++ - '0');
162 if (digs > 0 && *where && !isspace(CAST(unsigned char, *where)))
/freebsd-11-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-11-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);
205 return (currline(where) !
493 int where; local
[all...]
/freebsd-11-stable/sys/riscv/riscv/
H A Delf_machdep.c285 Elf64_Addr *where; local
297 where = (Elf_Addr *)(relocbase + rela->r_offset);
298 insn32p = (uint32_t*)where;
320 before64 = *where;
321 if (*where != val)
322 *where = val;
326 where,
329 before64, *where);
335 before64 = *where;
336 if (*where !
[all...]
/freebsd-11-stable/libexec/rtld-elf/aarch64/
H A Dreloc.c187 reloc_tlsdesc(Obj_Entry *obj, const Elf_Rela *rela, Elf_Addr *where) argument
190 where[0] = (Elf_Addr)_rtld_tlsdesc;
191 where[1] = obj->tlsoffset + rela->r_addend;
193 where[0] = (Elf_Addr)_rtld_tlsdesc_dynamic;
194 where[1] = (Elf_Addr)reloc_tlsdesc_alloc(obj, rela);
209 Elf_Addr *where; local
211 where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
215 *where += (Elf_Addr)obj->relocbase;
218 reloc_tlsdesc(obj, rela, where);
248 Elf_Addr *where; local
287 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *defobj, const Obj_Entry *obj, const Elf_Rel *rel) argument
322 Elf_Addr *where; local
[all...]
/freebsd-11-stable/sys/arm/arm/
H A Delf_machdep.c165 load_ptr(Elf_Addr *where) argument
169 if (RELOC_ALIGNED_P(where))
170 return *where;
171 memcpy(&res, where, sizeof(res));
176 store_ptr(Elf_Addr *where, Elf_Addr val) argument
178 if (RELOC_ALIGNED_P(where))
179 *where = val;
181 memcpy(where, &val, sizeof(val));
191 Elf_Addr *where; local
202 where
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Delf_machdep.c176 Elf32_Addr *where = (Elf32_Addr *)NULL; local
193 where = (Elf32_Addr *) (relocbase + rel->r_offset);
198 addend = *(Elf64_Addr *)where;
201 addend = *where;
208 where = (Elf32_Addr *) (relocbase + rela->r_offset);
226 if (*where != addr)
227 *where = (Elf32_Addr)addr;
242 addr += ((Elf_Addr)where & 0xf0000000) | addend;
245 *where &= ~0x03ffffff;
246 *where |
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Delf_machdep.c188 Elf64_Addr *where, val; local
200 where = (Elf_Addr *) (relocbase + rel->r_offset);
208 addend = *(Elf32_Addr *)where;
211 addend = *where;
217 where = (Elf_Addr *) (relocbase + rela->r_offset);
235 if (*where != val)
236 *where = val;
243 where32 = (Elf32_Addr *)where;
244 val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
254 where32 = (Elf32_Addr *)where;
[all...]
/freebsd-11-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-11-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
243 Elf_Addr *where; local
401 void *where; local
619 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, const Obj_Entry *defobj, const Obj_Entry *obj, const Elf_Rel *rel) argument
[all...]

Completed in 234 milliseconds

1234567891011>>