HomeSort by: relevance | last modified time | path
    Searched defs:value (Results 1 - 25 of 588) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/compat-43/
gethostid.c 49 int mib[2], value; local
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
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
  /src/sys/external/bsd/libnv/dist/
dnvlist.c 95 const void *value; local
98 value = nvlist_get_binary(nvl, name, sizep);
102 value = defval;
104 return (value);
132 void *value; local
135 value = nvlist_take_binary(nvl, name, sizep);
139 value = defval;
141 return (value);
  /src/tests/usr.bin/xlint/lint1/
msg_045.c 9 int value; member in struct:counter
19 /* expect+1: warning: invalid use of member 'value' [102] */
20 counter.value++;
msg_170.c 9 int value; member in struct:number
17 /* expect+1: error: function 'example' expects to return value [214] */
msg_185.c 9 const void *value; member in struct:any
msg_181.c 19 int value; member in struct:number
21 .value = 3,
  /src/lib/libc/stdlib/
a64l.c 23 long value, digit, shift; local
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
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
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
  /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
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/include/sys/
t_list.c 55 uint64_t value; local
61 n1->value = 1;
65 n2->value = 2;
73 ATF_CHECK_MSG(n3->value == 2, "Unexpected value for LIST_FIRST");
  /src/usr.bin/ktrace/
ktrace.h 51 unsigned long value; member in struct:ioctlinfo
  /src/games/battlestar/
command2.c 46 int firstnumber, value; local
52 value = wordvalue[wordnumber];
53 if (value >= 0 && objsht[value] == NULL)
55 switch (value) {
63 A_OR_AN_OR_BLANK(value), objsht[value]);
85 if (testbit(inven, value)) {
86 clearbit(inven, value);
87 setbit(wear, value);
    [all...]
command3.c 110 int value; local
116 value = wordvalue[wordnumber];
118 (testbit(location[position].objects, value) ||
119 value == BODY))
120 switch (value) {
125 value = MAID;
129 value = DEADWOOD;
133 value = DEADGOD;
137 value = DEADTIME;
141 value = DEADNATIVE
213 int firstnumber, value; local
    [all...]
  /src/games/sail/
dr_main.c 60 int value = 0; local
108 value = 1;
124 value = 1;
129 return value;
  /src/lib/libc/gen/
sysconf.c 71 * and then simply return the cached value on subsequent calls. This is
80 int mib[CTL_MAXNAME], value; local
86 len = sizeof(value);
112 * function, cache the value.
362 yesno: if (sysctl(mib, mib_len, &value, &len, NULL, 0) == -1)
364 if (value == 0)
366 return value;
452 return (sysctl(mib, mib_len, &value, &len, NULL, 0) == -1 ? -1
453 : value);
  /src/sys/arch/sparc/include/
elf_support.h 39 unsigned long value = (unsigned long)target; local
40 unsigned long offset = value - (unsigned long)where;
52 * The absolute address is a 32bit value.
54 * sethi %hi(value), %g1
55 * jmp %g1+%lo(value)
57 where[1] = JMP | LOVAL(value, 0);
59 where[0] = SETHI | HIVAL(value, 10);
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/arm/
call_apsr.h 30 uint32_t value; member in union:cpsr
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_vm_cpu.c 93 uint64_t value; local
100 value = p->pages_addr ?
104 i, value, flags);
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
mmio_context.h 46 u32 value; member in struct:engine_mmio

Completed in 49 milliseconds

1 2 3 4 5 6 7 8 91011>>