Searched refs:ival (Results 1 - 25 of 73) sorted by relevance

123

/macosx-10.10/ntp-92/libntp/
H A Datoint.c13 long *ival
46 *ival = -u;
48 *ival = u;
H A Docttoint.c13 u_long *ival
33 *ival = u;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dapitest.c33 int ival; local
151 if(ldap_get_option(NULL, LDAP_OPT_DEREF, &ival) != LDAP_SUCCESS) {
155 printf(" DEREF: %d\n", ival);
157 if(ldap_get_option(NULL, LDAP_OPT_SIZELIMIT, &ival) != LDAP_SUCCESS) {
161 printf(" SIZELIMIT: %d\n", ival);
163 if(ldap_get_option(NULL, LDAP_OPT_TIMELIMIT, &ival) != LDAP_SUCCESS) {
167 printf(" TIMELIMIT: %d\n", ival);
169 if(ldap_get_option(NULL, LDAP_OPT_REFERRALS, &ival) != LDAP_SUCCESS) {
173 printf(" REFERRALS: %s\n", ival ? "on" : "off");
175 if(ldap_get_option(NULL, LDAP_OPT_RESTART, &ival) !
[all...]
/macosx-10.10/uucp-11/uucp/uuconf/
H A Dtime.c36 long ival, int cretry,
42 long ival, int cretry, pointer pblock));
75 _uuconf_itime_parse (qglobal, ztime, ival, cretry, picmp, pqspan, pblock)
78 long ival;
200 iminute + iend, ival, cretry, picmp,
206 ival, cretry, picmp, &qlist, pblock);
209 iminute + 24 * 60, ival, cretry,
233 itadd_span (qglobal, istart, iend, ival, cretry, picmp, pqspan, pblock)
237 long ival;
261 && (*picmp) (ival, (*p
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dpj-dis.c30 unsigned char ival[4]; local
31 int status = info->read_memory_func (memaddr, ival, 4, info);
33 *iptr = (ival[0] << 24)
34 | (ival[1] << 16)
35 | (ival[2] << 8)
36 | (ival[3] << 0);
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dsafe_sprintf.c44 #define VA_INTGR(type) ival = va_arg(ap, type)
79 int ival = 0; local
108 width = ival;
110 prec = ival;
112 sprintf(fmt_arg, "%d", ival);
188 sprintf(buffer, format, ival);
/macosx-10.10/ntp-92/ntpdc/
H A Dntpdc.h35 long ival; member in struct:__anon11599
/macosx-10.10/smb-759.0/lib/smb/
H A Drcfile.h57 int ival; /* int/bool values, or max len for str value */ member in struct:opt_args
59 int min; /* min for ival */
60 int max; /* max for ival */
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Ddtest.c65 int ival = -1; local
66 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ival );
H A Detest.c74 int ival = -1; local
75 ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ival );
/macosx-10.10/sudo-73/src/
H A Ddefaults.h34 int ival; /* actually an enum */ member in struct:def_values
54 int ival; member in union:sudo_defs_types::__anon12633
H A Ddefaults.c136 if (cur->sd_un.ival) {
137 (void) printf(cur->desc, logfac2str(cur->sd_un.ival));
142 if (cur->sd_un.ival) {
143 (void) printf(cur->desc, logpri2str(cur->sd_un.ival));
149 (void) printf(cur->desc, cur->sd_un.ival);
169 if (cur->sd_un.ival == def->ival) {
614 def->sd_un.ival = 0;
620 def->sd_un.ival = (int)l;
637 def->sd_un.ival
[all...]
H A Ddef_data.h1 #define def_syslog (sudo_defs_table[0].sd_un.ival)
3 #define def_syslog_goodpri (sudo_defs_table[1].sd_un.ival)
5 #define def_syslog_badpri (sudo_defs_table[2].sd_un.ival)
65 #define def_loglinelen (sudo_defs_table[32].sd_un.ival)
71 #define def_passwd_tries (sudo_defs_table[35].sd_un.ival)
115 #define def_closefrom (sudo_defs_table[57].sd_un.ival)
/macosx-10.10/ncurses-44/ncurses/ncurses/trace/
H A Dvarargs.c47 #define VA_INT(type) ival = va_arg(ap, type)
81 int ival = 0; local
152 sprintf(buffer, "%d", ival);
/macosx-10.10/ntp-92/ntpq/
H A Dntpq.h35 long ival; member in union:__anon11601
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dseterror.c113 int ival; local
222 ival = va_arg(ap, int); /* get the next arg */
224 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DTextStream.cpp46 int ival = static_cast<int>(val); local
47 double dval = static_cast<double>(ival);
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dmod_proxy.c64 int ival; local
80 ival = atoi(val);
81 if (ival < 0)
83 worker->s->retry = apr_time_from_sec(ival);
90 ival = atoi(val);
91 if (ival < 1)
93 worker->s->ttl = apr_time_from_sec(ival);
98 ival = atoi(val);
99 if (ival < 0)
101 worker->s->min = ival;
279 int ival; local
[all...]
H A Dmod_proxy_balancer.c1080 int ival = atoi(val); local
1081 if (ival >= 1 && ival <= 100) {
1082 wsel->s->lbfactor = ival;
1112 int ival = atoi(val); local
1113 if (ival >= 0 && ival <= 99) {
1114 wsel->s->lbset = ival;
1126 int ival; local
1143 ival
[all...]
/macosx-10.10/libresolv-57/
H A Dres_init.c263 int32_t ival, len; local
283 ival = sizeof(res->defdname);
293 for (; (ival > 0) && (*p != '\0'); ival--) p++;
297 if (len > ival) return -1;
388 ival = ntohl(addr4.s_addr);
390 if (IN_CLASSA(ival)) mask.s_addr = htonl(IN_CLASSA_NET);
391 else if (IN_CLASSB(ival)) mask.s_addr = htonl(IN_CLASSB_NET);
400 ival = atoi(val);
401 if (ival <
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_mds/lib/
H A DMDSDictionary.cpp190 uint32 ival = 0; local
222 bool brtn = MDSCfTypeToUInt32(value, nameValues, key, ival, srcLen);
227 srcPtr = &ival;
243 bool brtn = MDSCfTypeToUInt32(value, nameValues, key, ival, srcLen);
248 srcPtr = &ival;
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmscipher.c100 long ival = 0; local
103 unsigned long overflow = 0x1ffUL << (((sizeof(ival) - 1) * 8) - 1);
107 ival = -1L;
108 ofloinit = ival & overflow;
111 if ((ival & overflow) != ofloinit) {
113 if (ival < 0) {
118 ival = ival << 8;
119 ival |= *cp++;
122 return ival;
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmscipher.c100 long ival = 0; local
103 unsigned long overflow = 0x1ffUL << (((sizeof(ival) - 1) * 8) - 1);
107 ival = -1L;
108 ofloinit = ival & overflow;
111 if ((ival & overflow) != ofloinit) {
113 if (ival < 0) {
118 ival = ival << 8;
119 ival |= *cp++;
122 return ival;
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dcmscipher.c110 long ival = 0; local
113 unsigned long overflow = 0x1ffUL << (((sizeof(ival) - 1) * 8) - 1);
117 ival = -1L;
118 ofloinit = ival & overflow;
121 if ((ival & overflow) != ofloinit) {
123 if (ival < 0) {
128 ival = ival << 8;
129 ival |= *cp++;
132 return ival;
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dcmscipher.c110 long ival = 0; local
113 unsigned long overflow = 0x1ffUL << (((sizeof(ival) - 1) * 8) - 1);
117 ival = -1L;
118 ofloinit = ival & overflow;
121 if ((ival & overflow) != ofloinit) {
123 if (ival < 0) {
128 ival = ival << 8;
129 ival |= *cp++;
132 return ival;
[all...]

Completed in 308 milliseconds

123