/src/lib/libc/compat-43/ |
gethostid.c | 49 int mib[2], value; local in function:gethostid 54 size = sizeof(value); 55 if (sysctl(mib, 2, &value, &size, NULL, (size_t)0) == -1) 57 return (value);
|
sethostid.c | 49 int mib[2], value; local in function:sethostid 53 value = (int)hostid; 54 if (sysctl(mib, 2, NULL, NULL, &value, sizeof(value)) == -1)
|
gethostid.c | 49 int mib[2], value; local in function:gethostid 54 size = sizeof(value); 55 if (sysctl(mib, 2, &value, &size, NULL, (size_t)0) == -1) 57 return (value);
|
sethostid.c | 49 int mib[2], value; local in function:sethostid 53 value = (int)hostid; 54 if (sysctl(mib, 2, NULL, NULL, &value, sizeof(value)) == -1)
|
/src/sys/arch/arm/xscale/ |
pxa2x0_gpio.h | 73 u_int value; member in struct:pxa2x0_gpioconf
|
pxa2x0_gpio.h | 73 u_int value; member in struct:pxa2x0_gpioconf
|
/src/sys/external/bsd/libnv/dist/ |
dnvlist.c | 95 const void *value; local in function:DNVLIST_GET 98 value = nvlist_get_binary(nvl, name, sizep); 102 value = defval; 104 return (value); 132 void *value; local in function:DNVLIST_TAKE 135 value = nvlist_take_binary(nvl, name, sizep); 139 value = defval; 141 return (value);
|
dnvlist.c | 95 const void *value; local in function:DNVLIST_GET 98 value = nvlist_get_binary(nvl, name, sizep); 102 value = defval; 104 return (value); 132 void *value; local in function:DNVLIST_TAKE 135 value = nvlist_take_binary(nvl, name, sizep); 139 value = defval; 141 return (value);
|
/src/tests/usr.bin/xlint/lint1/ |
msg_185.c | 9 const void *value; member in struct:any
|
msg_170.c | 9 int value; member in struct:number 17 /* expect+1: error: function 'example' expects to return value [214] */
|
msg_045.c | 9 int value; member in struct:counter 19 /* expect+1: warning: invalid use of member 'value' [102] */ 20 counter.value++;
|
msg_185.c | 9 const void *value; member in struct:any
|
msg_170.c | 9 int value; member in struct:number 17 /* expect+1: error: function 'example' expects to return value [214] */
|
msg_045.c | 9 int value; member in struct:counter 19 /* expect+1: warning: invalid use of member 'value' [102] */ 20 counter.value++;
|
/src/lib/libc/stdlib/ |
a64l.c | 23 long value, digit, shift; local in function:__weak_alias 28 value = 0; 40 value |= digit << shift; 44 return (long) value;
|
a64l.c | 23 long value, digit, shift; local in function:__weak_alias 28 value = 0; 40 value |= digit << shift; 44 return (long) value;
|
getenv.c | 54 * Returns ptr to value associated with name, if any, else NULL. 96 const char *value; local in function:getenv_r 98 value = __findenvvar(name, l_name); 99 if (value != NULL) { 100 if (strlcpy(buf, value, len) < len) {
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_getparam.c | 22 int value; local in function:i915_getparam_ioctl 32 value = i915->drm.pdev->device; 35 value = i915->drm.pdev->revision; 38 value = i915->ggtt.num_fences; 41 value = !!i915->overlay; 44 value = !!intel_engine_lookup_user(i915, 48 value = !!intel_engine_lookup_user(i915, 52 value = !!intel_engine_lookup_user(i915, 56 value = !!intel_engine_lookup_user(i915, 60 value = HAS_LLC(i915) [all...] |
i915_getparam.c | 22 int value; local in function:i915_getparam_ioctl 32 value = i915->drm.pdev->device; 35 value = i915->drm.pdev->revision; 38 value = i915->ggtt.num_fences; 41 value = !!i915->overlay; 44 value = !!intel_engine_lookup_user(i915, 48 value = !!intel_engine_lookup_user(i915, 52 value = !!intel_engine_lookup_user(i915, 56 value = !!intel_engine_lookup_user(i915, 60 value = HAS_LLC(i915) [all...] |
/src/usr.sbin/tprof/ |
ksyms.h | 34 uint64_t value; member in struct:sym
|
ksyms.h | 34 uint64_t value; member in struct:sym
|
/src/games/trek/ |
getpar.h | 40 cmdfun value; member in struct:cvntab
|
/src/sys/ddb/ |
db_print.c | 53 db_expr_t value, offset; local in function:db_show_regs 59 db_read_variable(&vs, &value); 60 db_printf("%-12s%s", vs.name, db_num_to_str(value)); 61 db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset); 63 (unsigned int) offset <= db_maxoff && offset != value) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_type_traits.h | 20 static const bool value = true; member in struct:__sanitizer::true_type 24 static const bool value = false; member in struct:__sanitizer::false_type 33 // is_same<int,int>::value - True 34 // is_same<int,char>::value - False
|
/src/tests/lib/libbluetooth/ |
t_sdp_data.c | 51 sdp_data_t value; local in function:ATF_TC_BODY 53 ATF_REQUIRE(sdp_get_data(&test, &value)); 54 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_NIL); 56 ATF_REQUIRE(sdp_get_data(&test, &value)); 57 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_UINT8); 91 sdp_data_t value; local in function:ATF_TC_BODY 93 ATF_REQUIRE(sdp_get_data(&test, &value)); 94 ATF_CHECK_EQ(sdp_data_size(&value), 1); 96 ATF_REQUIRE(sdp_get_data(&test, &value)); 97 ATF_CHECK_EQ(sdp_data_size(&value), 2) [all...] |