HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 76 - 100 of 13125) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/
10-1.c 26 union sigval value; local
27 value.sival_int = 0; /* 0 is just an arbitrary value */
29 if (-1 == sigqueue(getpid(), -1, value)) {
11-1.c 26 union sigval value; local
27 value.sival_int = 0; /* 0 is just an arbitrary value */
29 if (-1 == sigqueue(999999, 0, value)) {
2-1.c 24 union sigval value; local
25 value.sival_int = 0; /* 0 is just an arbitrary value */
27 if (sigqueue(getpid(), 0, value) != 0) {
2-2.c 34 union sigval value; local
35 value.sival_int = 0; /* 0 is just an arbitrary value */
40 if (-1 == sigqueue(999999, 0, value)) {
  /external/minijail/
libconstants.h 10 unsigned long value; member in struct:constant_entry
  /external/protobuf/objectivec/google/protobuf/
Any.pbobjc.h 73 /// The JSON representation of an `Any` value uses the regular
91 /// `value` which holds the custom JSON in addition to the `\@type`
96 /// "value": "1.212s"
112 /// value in binary format, or produce an error.
124 @property(nonatomic, readwrite, copy, null_resettable) NSData *value; variable
  /external/strace/tests/
rt_sigqueueinfo.c 41 union sigval value = { local
47 if (sigqueue(pid, SIGUSR1, value))
52 pid, pid, getuid(), value.sival_int, value.sival_ptr);
  /external/strace/tests-m32/
rt_sigqueueinfo.c 41 union sigval value = { local
47 if (sigqueue(pid, SIGUSR1, value))
52 pid, pid, getuid(), value.sival_int, value.sival_ptr);
  /external/strace/tests-mx32/
rt_sigqueueinfo.c 41 union sigval value = { local
47 if (sigqueue(pid, SIGUSR1, value))
52 pid, pid, getuid(), value.sival_int, value.sival_ptr);
  /external/syslinux/gpxe/src/core/
bitops.c 6 unsigned long value = x; local
9 for ( ls = 0 ; value ; ls++ ) {
10 value >>= 1;
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
stack.c 12 tree_ptr value = (*stack)->data; local
14 return value;
19 push (struct stack_struct **stack, tree_ptr value)
22 new_node->data = value;
  /external/vogar/test/vogar/android/
VogarArgs.java 33 String[] value(); method in interface:VogarArgs
  /frameworks/av/drm/libmediadrm/
DrmPluginPath.cpp 27 char value[PROPERTY_VALUE_MAX]; local
28 if (property_get("drm.64bit.enabled", value, NULL) == 0) {
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
get_amr_wb_bits.cpp 121 int16 value = 0; local
126 value <<= 2;
130 value |= 2;
135 value |= 1;
142 value <<= 1;
146 value |= 1;
151 return (value);
157 int16 value = 0; local
161 value = 1;
163 return (value);
    [all...]
  /frameworks/base/core/java/android/annotation/
RequiresFeature.java 44 String value(); method in interface:RequiresFeature
SuppressLint.java 37 String[] value(); method in interface:SuppressLint
SystemService.java 43 String value(); method in interface:SystemService
TargetApi.java 35 int value(); method in interface:TargetApi
  /frameworks/base/core/java/android/util/
MutableBoolean.java 24 public boolean value; field in class:MutableBoolean
26 public MutableBoolean(boolean value) {
27 this.value = value;
MutableByte.java 24 public byte value; field in class:MutableByte
26 public MutableByte(byte value) {
27 this.value = value;
MutableChar.java 24 public char value; field in class:MutableChar
26 public MutableChar(char value) {
27 this.value = value;
MutableDouble.java 24 public double value; field in class:MutableDouble
26 public MutableDouble(double value) {
27 this.value = value;
MutableFloat.java 24 public float value; field in class:MutableFloat
26 public MutableFloat(float value) {
27 this.value = value;
MutableInt.java 24 public int value; field in class:MutableInt
26 public MutableInt(int value) {
27 this.value = value;
MutableLong.java 24 public long value; field in class:MutableLong
26 public MutableLong(long value) {
27 this.value = value;

Completed in 862 milliseconds

1 2 34 5 6 7 8 91011>>