/openbsd/gnu/usr.bin/binutils/ld/ |
H A D | ldemul.c | 240 ld_emulation_xfer_type **eptr = ld_emulations; in ldemul_choose_mode() local 244 for (; *eptr; eptr++) in ldemul_choose_mode() 246 if (strcmp (target, (*eptr)->emulation_name) == 0) in ldemul_choose_mode() 248 ld_emulation = *eptr; in ldemul_choose_mode() 261 ld_emulation_xfer_type **eptr = ld_emulations; in ldemul_list_emulations() local 264 for (; *eptr; eptr++) in ldemul_list_emulations() 270 fprintf (f, "%s", (*eptr)->emulation_name); in ldemul_list_emulations() 277 ld_emulation_xfer_type **eptr; in ldemul_list_emulation_options() local 280 for (eptr = ld_emulations; *eptr; eptr++) in ldemul_list_emulation_options() 282 ld_emulation_xfer_type *emul = *eptr; in ldemul_list_emulation_options()
|
/openbsd/gnu/usr.bin/binutils-2.17/ld/ |
H A D | ldemul.c | 250 ld_emulation_xfer_type **eptr = ld_emulations; in ldemul_choose_mode() local 254 for (; *eptr; eptr++) in ldemul_choose_mode() 256 if (strcmp (target, (*eptr)->emulation_name) == 0) in ldemul_choose_mode() 258 ld_emulation = *eptr; in ldemul_choose_mode() 271 ld_emulation_xfer_type **eptr = ld_emulations; in ldemul_list_emulations() local 274 for (; *eptr; eptr++) in ldemul_list_emulations() 280 fprintf (f, "%s", (*eptr)->emulation_name); in ldemul_list_emulations() 287 ld_emulation_xfer_type **eptr; in ldemul_list_emulation_options() local 290 for (eptr = ld_emulations; *eptr; eptr++) in ldemul_list_emulation_options() 292 ld_emulation_xfer_type *emul = *eptr; in ldemul_list_emulation_options()
|
/openbsd/lib/libm/src/ |
H A D | s_frexpf.c | 23 frexpf(float x, int *eptr) in frexpf() argument 28 *eptr = 0; in frexpf() 34 *eptr = -25; in frexpf() 36 *eptr += (ix>>23)-126; in frexpf()
|
/openbsd/lib/libcrypto/asn1/ |
H A D | asn1_gen.c | 383 char *eptr; in parse_tagging() local 387 tag_num = strtoul(vstart, &eptr, 10); in parse_tagging() 389 if (eptr && *eptr && (eptr > vstart + vlen)) in parse_tagging() 397 if (eptr) in parse_tagging() 398 vlen -= eptr - vstart; in parse_tagging() 402 switch (*eptr) { in parse_tagging() 422 ERR_asprintf_error_data("Char=%c", *eptr); in parse_tagging() 791 char *eptr; in bitstr_cb() local 795 bitnum = strtoul(elem, &eptr, 10); in bitstr_cb() 796 if (eptr && *eptr && (eptr != elem + len)) in bitstr_cb()
|
/openbsd/gnu/gcc/gcc/config/alpha/ |
H A D | vms-ld.c | 149 char *eptr, *sptr; in locate_lib() local 151 for (sptr = path_val; *sptr; sptr = eptr) in locate_lib() 158 eptr = strchr (sptr, PATH_SEPARATOR); in locate_lib() 159 if (eptr == 0) in locate_lib() 160 eptr = strchr (sptr, 0); in locate_lib() 162 buf = alloca ((eptr-sptr) + lib_len + 4 + 2); in locate_lib() 163 strncpy (buf, sptr, eptr-sptr); in locate_lib() 164 buf [eptr-sptr] = 0; in locate_lib()
|
/openbsd/gnu/usr.bin/gcc/gcc/config/alpha/ |
H A D | vms-ld.c | 150 char *eptr, *sptr; local 152 for (sptr = path_val; *sptr; sptr = eptr) 159 eptr = strchr (sptr, PATH_SEPARATOR); 160 if (eptr == 0) 161 eptr = strchr (sptr, 0); 163 buf = alloca ((eptr-sptr) + lib_len + 4 + 2); 164 strncpy (buf, sptr, eptr-sptr); 165 buf [eptr-sptr] = 0;
|
/openbsd/usr.bin/make/ |
H A D | arch.c | 613 char *ptr, *eptr; in ArchSVR4Entry() local 637 eptr = l->fnametab + size; in ArchSVR4Entry() 638 for (entry = 0, ptr = l->fnametab; ptr < eptr; ptr++) in ArchSVR4Entry() 660 entry = (size_t) strtol(name, &eptr, 0); in ArchSVR4Entry() 661 if ((*eptr != ' ' && *eptr != '\0') || eptr == name) { in ArchSVR4Entry()
|
H A D | cond.c | 388 char *eptr; in CondCvtArg() local 389 *value = strtod(str, &eptr); in CondCvtArg() 390 return *eptr == '\0'; in CondCvtArg()
|
H A D | suff.c | 521 new_suffixi(const char *str, const char *eptr) in new_suffixi() argument 525 s = ohash_create_entry(&suff_info, str, &eptr); in new_suffixi() 526 s->nameLen = eptr - str; in new_suffixi()
|
/openbsd/gnu/usr.bin/binutils/bfd/ |
H A D | vms-misc.c | 62 char *eptr; in _bfd_vms_debug() local 68 if ((eptr = getenv("VMS_DEBUG")) != NULL) in _bfd_vms_debug() 70 min_level = atoi(eptr); in _bfd_vms_debug() 102 char *eptr; local 106 if ((eptr = getenv("VMS_DEBUG")) != NULL) 108 min_level = atoi(eptr);
|
/openbsd/usr.sbin/makefs/cd9660/ |
H A D | cd9660_eltorito.c | 181 char *eptr; in cd9660_eltorito_add_boot_option() local 202 image->loadSegment = strtoul(value, &eptr, 16); in cd9660_eltorito_add_boot_option() 203 if (eptr == value || *eptr != '\0' || errno != ERANGE) { in cd9660_eltorito_add_boot_option()
|
/openbsd/gnu/usr.bin/perl/ |
H A D | numeric.c | 1309 const char** eptr; in Perl_grok_atoUV() local 1316 eptr = endptr; in Perl_grok_atoUV() 1320 eptr = &end2; in Perl_grok_atoUV() 1323 if ( *eptr <= s in Perl_grok_atoUV() 1331 if (s < *eptr && isDIGIT(*s)) { in Perl_grok_atoUV() 1335 while (s < *eptr && isDIGIT(*s)) { in Perl_grok_atoUV()
|
H A D | sv.c | 12638 eptr = q - 1; 12665 if (eptr) 12824 eptr = HEK_KEY(hek); 12839 elen = strlen(eptr); 12846 eptr = HvNAME(hv); 13181 eptr = ebuf; 13186 eptr = ebuf; 13200 eptr = ptr; 13316 eptr = ebuf; 13494 eptr = ebuf; [all …]
|
H A D | perlio.c | 3829 STDCHAR *eptr = (STDCHAR*)PerlSIO_get_ptr(s); in PerlIOStdio_unread() local 3837 if ((STDCHAR*)PerlSIO_get_ptr(s) != --eptr || (((U8) *eptr) != ch)) { in PerlIOStdio_unread() 5168 const STDCHAR * const eptr = b->buf + b->bufsiz; in PerlIOCrlf_write() local 5170 while (buf < ebuf && b->ptr < eptr) { in PerlIOCrlf_write() 5172 if ((b->ptr + 2) > eptr) { in PerlIOCrlf_write() 5192 if (b->ptr >= eptr) { in PerlIOCrlf_write()
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | doublest.c | 294 static long double ldfrexp (long double value, int *eptr); 297 ldfrexp (long double value, int *eptr) in ldfrexp() argument 329 *eptr = exp; in ldfrexp()
|
/openbsd/gnu/usr.bin/binutils-2.17/bfd/ |
H A D | vms-misc.c | 55 char *eptr; in _bfd_vms_debug() local 61 if ((eptr = getenv ("VMS_DEBUG")) != NULL) in _bfd_vms_debug() 63 min_level = atoi (eptr); in _bfd_vms_debug()
|
/openbsd/gnu/usr.bin/binutils/ld/emultempl/ |
H A D | elf32.em | 87 char*eptr, *lib = name; 131 *pmaj = strtoul (s, &eptr, 10); 134 /* eptr ^ */ 135 if (*eptr != '.' || s == eptr) 138 s = eptr+1; 142 *pmin = strtoul (s, &eptr, 10); 145 /* eptr ^ */ 146 if (*eptr != '\0' || s == eptr) 213 char *eptr, *eptr1; 251 if (*eptr != '.' || ((entry->d_name + 3 + len) == eptr)) [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | mips-tfile.c | 3190 eptr = ext_hash_ptr->esym_ptr; 3199 && eptr == (EXTR *) 0) 3211 : &eptr->asym; 3305 last_func_eptr = eptr; 3318 if (eptr != (EXTR *) 0 3321 eptr->ifd = cur_file_ptr->file_index; 3322 eptr->asym.index = indx; 3378 if (eptr == (EXTR *) 0 3379 || eptr->asym.st == (int) st_Nil 4625 EXTR *eptr = orig_ext_syms + es; in copy_object() local [all …]
|
/openbsd/gnu/gcc/gcc/ |
H A D | mips-tfile.c | 3085 eptr = ext_hash_ptr->esym_ptr; in parse_def() 3094 && eptr == (EXTR *) 0) in parse_def() 3106 : &eptr->asym; in parse_def() 3200 last_func_eptr = eptr; in parse_def() 3213 if (eptr != (EXTR *) 0 in parse_def() 3216 eptr->ifd = cur_file_ptr->file_index; in parse_def() 3217 eptr->asym.index = indx; in parse_def() 3273 if (eptr == (EXTR *) 0 in parse_def() 3274 || eptr->asym.st == (int) st_Nil in parse_def() 4489 EXTR *eptr = orig_ext_syms + es; in copy_object() local [all …]
|
/openbsd/gnu/usr.bin/binutils-2.17/ld/emultempl/ |
H A D | elf32.em | 102 char*eptr, *lib = name; 146 *pmaj = strtoul (s, &eptr, 10); 149 /* eptr ^ */ 150 if (*eptr != '.' || s == eptr) 153 s = eptr+1; 157 *pmin = strtoul (s, &eptr, 10); 160 /* eptr ^ */ 161 if (*eptr != '\0' || s == eptr) 228 char *eptr, *eptr1; 266 if (*eptr != '.' || ((entry->d_name + 3 + len) == eptr)) [all …]
|
/openbsd/sys/arch/hppa/include/ |
H A D | pdc.h | 480 u_int eptr; /* 0x7c: entry pointer */ member
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
H A D | 920428-2.c | 22 double frexp(double value, int *eptr);
|
/openbsd/gnu/usr.bin/perl/vms/ |
H A D | vms.c | 7611 char *eptr; local 7613 eptr = NULL; 7634 eptr = &vmspath[i+1]; 7639 *eptr = vmspath[i]; 7640 eptr[1] = '\0';
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | LangRef.rst | 10762 %eptr = getelementptr [12 x i8], ptr %aptr, i64 0, i32 1
|