| /src/external/ibm-public/postfix/dist/src/global/ |
| conv_time.c | 72 int intval; local 76 intval = longval = strtol(strval, &end, 10); 77 if (*strval == 0 || errno == ERANGE || longval != intval || intval < 0 83 if (intval < INT_MAX / WEEK) { 84 *timval = intval * WEEK; 90 if (intval < INT_MAX / DAY) { 91 *timval = intval * DAY; 97 if (intval < INT_MAX / HOUR) { 98 *timval = intval * HOUR [all...] |
| mail_conf_int.c | 40 /* void check_mail_conf_int(name, intval, min, max) 42 /* int intval; 114 static int convert_mail_conf_int(const char *name, int *intval) 122 *intval = longval = strtol(strval, &end, 10); 123 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != *intval) 132 void check_mail_conf_int(const char *name, int intval, int min, int max) 134 if (min && intval < min) 135 msg_fatal("invalid %s parameter value %d < %d", name, intval, min); 136 if (max && intval > max) 137 msg_fatal("invalid %s parameter value %d > %d", name, intval, max) 144 int intval; local 157 int intval; local 175 int intval; local [all...] |
| mail_conf_nint.c | 110 static int convert_mail_conf_nint(const char *name, int *intval) 118 *intval = longval = strtol(strval, &end, 10); 119 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != *intval) 128 static void check_mail_conf_nint(const char *name, int intval, int min, int max) 130 if (min && intval < min) 131 msg_fatal("invalid %s parameter value %d < %d", name, intval, min); 132 if (max && intval > max) 133 msg_fatal("invalid %s parameter value %d > %d", name, intval, max); 140 int intval; local 142 if (convert_mail_conf_nint(name, &intval) == 0 155 int intval; local 175 int intval; local [all...] |
| mail_conf_bool.c | 88 static int convert_mail_conf_bool(const char *name, int *intval) 96 *intval = 1; 98 *intval = 0; 110 int intval; local 112 if (convert_mail_conf_bool(name, &intval) == 0) 113 set_mail_conf_bool(name, intval = defval); 114 return (intval); 123 int intval; local 125 if (convert_mail_conf_bool(name, &intval) == 0) 126 set_mail_conf_bool(name, intval = defval()) [all...] |
| mail_conf_nbool.c | 89 static int convert_mail_conf_nbool(const char *name, int *intval) 97 *intval = 1; 99 *intval = 0; 111 int intval; local 113 if (convert_mail_conf_nbool(name, &intval) == 0) 115 if (convert_mail_conf_nbool(name, &intval) == 0) 117 return (intval); 126 int intval; local 128 if (convert_mail_conf_nbool(name, &intval) == 0) 130 if (convert_mail_conf_nbool(name, &intval) == 0 [all...] |
| mail_conf_time.c | 36 /* void check_mail_conf_time(name, intval, min, max) 38 /* int intval; 111 static int convert_mail_conf_time(const char *name, int *intval, int def_unit) 117 if (conv_time(strval, intval, def_unit) == 0) 124 void check_mail_conf_time(const char *name, int intval, int min, int max) 126 if (min && intval < min) 127 msg_fatal("invalid %s: %d (min %d)", name, intval, min); 128 if (max && intval > max) 129 msg_fatal("invalid %s: %d (max %d)", name, intval, max); 157 int intval; local 174 int intval; local [all...] |
| cfg_parser.c | 159 int intval; local 164 intval = longval = strtol(strval, &end, 10); 165 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != intval) 169 intval = defval; 170 if (min && intval < min) 172 parser->name, name, intval, min); 173 if (max && intval > max) 175 parser->name, name, intval, max); 176 return (intval); 198 int intval; local 287 int intval; local 300 int intval; local [all...] |
| mail_version.c | 99 int intval; local 103 intval = longval = strtol(strval, &end, 10); 104 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != intval) 105 intval = (-1); 106 return (intval);
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/builtin_commands/ |
| cat.py | 13 for intval in data: 14 if intval == 9 or intval == 10: 15 newdata.write(chr(intval)) 17 if intval > 127: 18 intval = intval -128 20 if intval < 32: 22 newdata.write(chr(intval+64)) 23 elif intval == 127 [all...] |
| /src/external/bsd/pcc/dist/pcc/cc/cxxcom/ |
| scan.l | 101 "class" { yylval.intval = CLNAME; notype=1; return(C_STRUCT); } 104 "const_cast" { yylval.intval = CONST_CAST; return(CXX_CASTS); } 110 "dynamic_cast" { yylval.intval = DYN_CAST; return(CXX_CASTS); } 125 "reinterpret_cast" { yylval.intval = REINT_CAST; return(CXX_CASTS); } 132 "static_cast" { yylval.intval = STATIC_CAST; return(CXX_CASTS); } 133 "struct" { yylval.intval = STNAME; notype=1; return(C_STRUCT); } 138 "union" { yylval.intval = UNAME; notype=1; return(C_STRUCT); } 162 ">>=" { yylval.intval = RSEQ; return(C_ASOP); } 163 "<<=" { yylval.intval = LSEQ; return(C_ASOP); } 164 "+=" { yylval.intval = PLUSEQ; return(C_ASOP); [all...] |
| /src/usr.bin/rdist/ |
| gram.y | 71 int intval; 77 %type <intval> OPTION, options 311 yylval.intval = COMPARE; 315 yylval.intval = REMOVE; 319 yylval.intval = VERIFY; 323 yylval.intval = WHOLE; 327 yylval.intval = YOUNGER; 331 yylval.intval = FOLLOW; 335 yylval.intval = IGNLNKS;
|
| /src/sys/arch/arm/nxp/ |
| imx6_platform.c | 186 fdt32_t intval[3]; local 223 intval[0] = cpu_to_fdt32(1); 224 intval[1] = cpu_to_fdt32(13); 225 intval[2] = cpu_to_fdt32(0xf01); 227 intval, sizeof(intval));
|
| /src/usr.bin/patch/ |
| util.c | 289 static sig_t hupval, intval; local 295 intval = signal(SIGINT, SIG_IGN); 296 if (intval != SIG_IGN) 297 intval = my_exit; 300 signal(SIGINT, intval);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ia64-libunwind-tdep.c | 313 unw_word_t intval; local 362 ret = unw_get_reg_p (&cache->cursor, uw_regnum, &intval); 365 val = frame_unwind_got_constant (this_frame, regnum, intval); 446 unw_word_t intval; local 475 ret = unw_get_reg_p (&cursor, uw_regnum, &intval); 476 ptr = &intval;
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ia64-libunwind-tdep.c | 313 unw_word_t intval; local 362 ret = unw_get_reg_p (&cache->cursor, uw_regnum, &intval); 365 val = frame_unwind_got_constant (this_frame, regnum, intval); 446 unw_word_t intval; local 475 ret = unw_get_reg_p (&cursor, uw_regnum, &intval); 476 ptr = &intval;
|
| /src/external/bsd/wpa/dist/wpa_supplicant/ |
| wnm_sta.h | 58 u8 action, u16 intval, struct wpabuf *tfs_req);
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-const.cc | 42 gfc_build_const (tree type, tree intval) 50 val = convert (type, intval); 54 val = build_real_from_int_cst (type, intval); 58 val = build_real_from_int_cst (TREE_TYPE (type), intval);
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-const.cc | 42 gfc_build_const (tree type, tree intval) 50 val = convert (type, intval); 54 val = build_real_from_int_cst (type, intval); 58 val = build_real_from_int_cst (TREE_TYPE (type), intval);
|
| /src/sbin/iscsid/ |
| iscsid_lists.c | 402 elem = find_id(&list[par->list_kind].list, par->intval); 437 (!par->intval || 438 p->addr.port == par->intval)) 448 (!par->intval || 449 t->addr.port == par->intval)) 458 (!par->intval || i->port == par->intval))
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| dsl_prop.c | 616 uint64_t zapobj, intval, dummy; local 626 isint = (dodefault(zfs_name_to_prop(propname), 8, 1, &intval) == 0); 723 VERIFY0(dsl_prop_get_int_ds(ds, propname, &intval)); 737 cbr->cbr_func(cbr->cbr_arg, intval); 742 ds->ds_dir->dd_object, propname, intval, TRUE); 746 "%lld", (longlong_t)intval); 874 uint64_t intval = fnvpair_value_uint64(pair); local 876 source, sizeof (intval), 1, &intval, tx);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/ |
| sqltypes.d | 133 _intval intval;
|
| /src/external/gpl3/gdb.old/dist/gdb/python/ |
| py-param.c | 103 int intval; member in union:parmpy_variable 151 return setting (type, &s->value.intval, s->extra_literals); 378 self->value.intval = (int) val; 657 &self->value.intval, 665 &self->value.intval,
|
| /src/external/gpl3/gdb/dist/gdb/python/ |
| py-param.c | 107 int intval; member in union:parmpy_variable 158 return setting (type, &s->value.intval, s->extra_literals); 400 self->value.intval = (int) val; 683 &self->value.intval, 691 &self->value.intval,
|
| /src/external/gpl3/gcc/dist/gcc/config/h8300/ |
| h8300.cc | 702 && INTVAL (XEXP (x, 1)) == offset); 992 HOST_WIDE_INT val = INTVAL (operands[1]); 1217 HOST_WIDE_INT n = INTVAL (x); 1451 fprintf (file, "#%ld", (-INTVAL (x)) & 0xff); 1464 fprintf (file, "#%ld", ((-INTVAL (x)) & 0xff00) >> 8); 1472 fprintf (file, "#%ld", 0xff & (-INTVAL (x))); 1487 bitint = (INTVAL (x) & 0xffff); 1496 bitint = ((~INTVAL (x)) & 0xffff); 1520 bitint = INTVAL (x); 1549 fprintf (file, "#%ld", ((INTVAL (x) >> 16) & 0xffff)) 2736 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2836 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2907 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2951 const unsigned HOST_WIDE_INT intval = local 3122 const unsigned HOST_WIDE_INT intval = local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/h8300/ |
| h8300.cc | 702 && INTVAL (XEXP (x, 1)) == offset); 992 HOST_WIDE_INT val = INTVAL (operands[1]); 1217 HOST_WIDE_INT n = INTVAL (x); 1451 fprintf (file, "#%ld", (-INTVAL (x)) & 0xff); 1464 fprintf (file, "#%ld", ((-INTVAL (x)) & 0xff00) >> 8); 1472 fprintf (file, "#%ld", 0xff & (-INTVAL (x))); 1487 bitint = (INTVAL (x) & 0xffff); 1496 bitint = ((~INTVAL (x)) & 0xffff); 1520 bitint = INTVAL (x); 1549 fprintf (file, "#%ld", ((INTVAL (x) >> 16) & 0xffff)) 2736 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2836 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2907 HOST_WIDE_INT intval = INTVAL (operands[2]); local 2951 const unsigned HOST_WIDE_INT intval = local 3122 const unsigned HOST_WIDE_INT intval = local [all...] |