Searched refs:val (Results 1 - 25 of 3650) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/elftoolchain/readelf/
H A Dreadelf.c1942 const char *(*get_desc)(uint64_t val);
2854 dump_flags(struct flag_desc *desc, uint64_t val) argument
2859 if (val & fd->flag) {
2860 val &= ~fd->flag;
2864 if (val != 0)
2865 printf(" unknown (0x%jx)", (uintmax_t)val);
4233 uint64_t val; local
4248 val = _decode_uleb128(&p, pe);
4249 printf("%ju\n", (uintmax_t) val);
4258 uint64_t val; local
4270 uint64_t tag, val; local
4343 uint64_t tag, val; local
4375 uint64_t tag, val; local
4406 uint64_t val; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio_odc.c134 const char *val)
140 if (val == NULL || val[0] == 0)
146 &a->archive, val, 0);
133 archive_write_odc_options(struct archive_write *a, const char *key, const char *val) argument
H A Darchive_write_set_format_cpio_binary.c237 const char *val)
243 if (val == NULL || val[0] == 0)
249 &a->archive, val, 0);
236 archive_write_binary_options(struct archive_write *a, const char *key, const char *val) argument
H A Darchive_write_set_format_7zip.c860 enc_uint64(struct archive_write *a, uint64_t val) argument
868 if (val < mask) {
869 numdata[0] |= (uint8_t)val;
872 numdata[i] = (uint8_t)val;
873 val >>= 8;
H A Darchive_read_support_format_zip.c1923 uint32_t val; local
1958 val = archive_le16dec(p);
1959 order = (val & 15) + 1;
1960 mem = ((val >> 4) & 0xff) + 1;
1961 restore_method = (val >> 12);
2993 const char *key, const char *val)
3001 zip->init_default_conversion = (val != NULL) ? 1 : 0;
3004 if (val == NULL || val[0] == 0)
3010 &a->archive, val,
2992 archive_read_format_zip_options(struct archive_read *a, const char *key, const char *val) argument
[all...]
H A Darchive_read_support_format_tar.c426 const char *key, const char *val)
434 tar->compat_2x = (val != NULL && val[0] != 0);
438 if (val == NULL || val[0] == 0)
444 &a->archive, val, 0);
452 tar->process_mac_extensions = (val != NULL && val[0] != 0);
455 tar->read_concatenated_archives = (val != NULL && val[
425 archive_read_format_tar_options(struct archive_read *a, const char *key, const char *val) argument
[all...]
H A Darchive_read_support_format_rar5.c1117 const char *val) {
1120 (void) val;
1116 rar5_options(struct archive_read *a, const char *key, const char *val) argument
H A Darchive_read_support_format_rar.c784 const char *key, const char *val)
791 if (val == NULL || val[0] == 0)
797 &a->archive, val, 0);
2091 int i, j, val, n, r; local
2236 if ((val = read_next_symbol(a, &precode)) < 0) {
2241 if (val < 16)
2243 rar->lengthtable[i] = (rar->lengthtable[i] + val) & 0xF;
2246 else if (val < 18)
2257 if(val
783 archive_read_format_rar_options(struct archive_read *a, const char *key, const char *val) argument
[all...]
H A Darchive_read_support_format_mtree.c213 const char *key, const char *val)
220 if (val == NULL || val[0] == 0) {
1451 parse_device(dev_t *pdev, struct archive *a, char *val) argument
1462 if ((dev = strchr(val, ',')) != NULL) {
1468 if ((pack = pack_find(val)) == NULL) {
1470 "Unknown format `%s'", val);
1500 result = (dev_t)mtree_atol(&val, 0);
1592 char *val, *key; local
1616 val
212 archive_read_format_mtree_options(struct archive_read *a, const char *key, const char *val) argument
[all...]
H A Darchive_read_support_format_cpio.c324 const char *key, const char *val)
332 cpio->init_default_conversion = (val != NULL)?1:0;
335 if (val == NULL || val[0] == 0)
341 &a->archive, val, 0);
349 if (val != NULL && val[0] != 0)
323 archive_read_format_cpio_options(struct archive_read *a, const char *key, const char *val) argument
H A Darchive_read_support_format_cab.c459 const char *key, const char *val)
466 if (val == NULL || val[0] == 0)
471 &a->archive, val, 0);
458 archive_read_format_cab_options(struct archive_read *a, const char *key, const char *val) argument
H A Darchive_read_support_format_7zip.c1643 parse_7zip_uint64(struct archive_read *a, uint64_t *val) argument
1653 *val = 0;
1658 *val |= ((uint64_t)*p) << (8 * i);
1662 *val += ((uint64_t)(avail & (mask -1))) << (8 * i);
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_virtio_console.c211 pci_vtcon_cfgwrite(void *vsc, int offset, int size, uint32_t val) argument
/freebsd-11-stable/libexec/ftpd/
H A Dftpd.c392 long val = 0; local
394 val = strtol(optarg, &optarg, 8);
395 if (*optarg != '\0' || val < 0)
398 defumask = val;
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_futex.c754 uint32_t flags, val; local
790 args->val, args->val3);
791 LINUX_CTR3(sys_futex, "WAIT uaddr %p val 0x%x bitset 0x%x",
792 args->uaddr, args->val, args->val3);
815 error = copyin_nofault(args->uaddr, &val, sizeof(val));
818 error = copyin(args->uaddr, &val, sizeof(val));
828 if (val != args->val) {
[all...]
/freebsd-11-stable/usr.sbin/jail/
H A Dconfig.c194 TAILQ_FOREACH(s, &p->val, tq) {
199 if (!vp || TAILQ_EMPTY(&vp->val)) {
217 TAILQ_FOREACH(vs, &vp->val, tq)
226 vs = TAILQ_FIRST(&vp->val);
249 TAILQ_INSERT_AFTER(&p->val, s, ns, tq);
322 TAILQ_FOREACH(s, &p->val, tq) {
378 TAILQ_CONCAT(&dp->val, &nss, tq);
384 TAILQ_INIT(&np->val);
385 TAILQ_CONCAT(&np->val, &nss, tq);
414 (TAILQ_EMPTY(&p->val) ||
451 const char *val; local
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dkernel.h282 #define u64_to_user_ptr(val) ((void *)(uintptr_t)(val))
465 #define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
/freebsd-11-stable/sys/netgraph/
H A Dng_base.c952 u_long val; local
960 val = strtoul(name + 1, &eptr, 16);
961 if ((eptr - name != len - 1) || (val == ULONG_MAX) || (val == 0))
964 return ((ng_ID_t)val);
3378 int val; local
3381 val = allocated;
3383 error = sysctl_handle_int(oidp, &val, 0, req);
3386 if (val == 42) {
H A Dng_parse.c338 long val; local
342 val = strtol(s + *off, &eptr, 0);
343 if (val < (int8_t)0x80 || val > (u_int8_t)0xff || eptr == s + *off)
346 val8 = (int8_t)val;
359 int8_t val; local
361 bcopy(data + *off, &val, sizeof(int8_t));
365 fval = val;
369 fval = (u_int8_t)val;
373 fval = (u_int8_t)val;
388 int8_t val; local
433 long val; local
455 int16_t val; local
484 int16_t val; local
529 long val; /* assumes long is at least 32 bits */ local
554 int32_t val; local
583 int32_t val; local
628 quad_t val; local
648 int64_t val; local
678 int64_t val; local
1023 u_long val; local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c22113 int val = 0; local
22119 val = 0;
22124 val = val*10 + *zDate - '0';
22127 if( val<(int)min || val>(int)max || (nextC!=0 && nextC!=*zDate) ){
22130 *va_arg(ap,int*) = val;
28560 et_getdigit(LONGDOUBLE_TYPE *val, int *cnt) argument
53265 write32bits(sqlite3_file *fd, i64 offset, u32 val) argument
77086 double val = (double)0; local
77321 vdbeReleaseAndSetInt64(Mem *pMem, i64 val) argument
77331 sqlite3VdbeMemSetInt64(Mem *pMem, i64 val) argument
77366 sqlite3VdbeMemSetDouble(Mem *pMem, double val) argument
79426 sqlite3VdbeChangeP1(Vdbe *p, int addr, int val) argument
79429 sqlite3VdbeChangeP2(Vdbe *p, int addr, int val) argument
79432 sqlite3VdbeChangeP3(Vdbe *p, int addr, int val) argument
84738 const void *val; local
84748 int val = sqlite3_value_bytes( columnMem(pStmt,i) ); local
84753 int val = sqlite3_value_bytes16( columnMem(pStmt,i) ); local
84758 double val = sqlite3_value_double( columnMem(pStmt,i) ); local
84763 int val = sqlite3_value_int( columnMem(pStmt,i) ); local
84768 sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) ); local
84773 const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) ); local
84788 const void *val = sqlite3_value_text16( columnMem(pStmt,i) ); local
92493 i64 val; local
155859 int val = (pFunc->zName==leadName ? 1 : -1); local
192467 sqlite3_rtree_dbl val; /* Coordinate value convert to a double */ local
222195 i64 val = sqlite3_column_int(pIdxSelect, 0); local
228931 Fts5Buffer val; local
[all...]
H A Dshell.c6441 static void zipfilePutU16(u8 *aBuf, u16 val){ argument
6442 aBuf[0] = val & 0xFF;
6443 aBuf[1] = (val>>8) & 0xFF;
6449 static void zipfilePutU32(u8 *aBuf, u32 val){ argument
6450 aBuf[0] = val & 0xFF;
6451 aBuf[1] = (val>>8) & 0xFF;
6452 aBuf[2] = (val>>16) & 0xFF;
6453 aBuf[3] = (val>>24) & 0xFF;
6459 #define zipfileWrite32(aBuf,val) { zipfilePutU32(aBuf,val); aBu
15615 unsigned int val = get4byteInt(aHdr + ofst); local
15635 int val = db_int(p, zSql); local
18003 int val = 1; local
[all...]
/freebsd-11-stable/contrib/unbound/util/
H A Dconfiglexer.lex41 if(num_args > 0) { BEGIN(val); } \
210 %x quotedstring singlequotedstr include include_quoted val include_toplevel include_toplevel_quoted
213 <INITIAL,val>{SPACE}* {
215 <INITIAL,val>{SPACE}*{COMMENT}.* {
383 val-override-date{COLON} { YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
384 val-sig-skew-min{COLON} { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
385 val-sig-skew-max{COLON} { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
386 val-bogus-ttl{COLON} { YDVAR(1, VAR_BOGUS_TTL) }
387 val-clean-additional{COLON} { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
388 val
[all...]
H A Dconfig_file.h1151 * @param val: argument strings to local-zone, "example.com nodefault".
1154 int cfg_parse_local_zone(struct config_file* cfg, const char* val);
H A Dconfig_file.c405 if(atoi(val) == 0 && strcmp(val, "0") != 0) return 0
408 if(atoi(val) == 0) return 0
411 if(atoi(val) == 0 || !is_pow2((size_t)atoi(val))) return 0
414 if(strcmp(val, "yes") != 0 && strcmp(val, "no") != 0) return 0
417 { IS_NUMBER_OR_ZERO; cfg->var = atoi(val); }
420 { IS_NONZERO_NUMBER; cfg->var = atoi(val); }
423 { IS_NUMBER_OR_ZERO; cfg->var = (unsigned)atoi(val); }
453 config_set_option(struct config_file* cfg, const char* opt, const char* val) argument
2292 cfg_parse_local_zone(struct config_file* cfg, const char* val) argument
[all...]
/freebsd-11-stable/contrib/unbound/smallapp/
H A Dunbound-control.c136 printf(" set_option opt: val set option to value, no reload\n");
269 PR_LL("mem.mod.validator", shm_stat->mem.val);

Completed in 1508 milliseconds

1234567891011>>