HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 151 - 175 of 6865) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/kmod/libkmod/
libkmod-index.h 28 char value[0]; member in struct:index_value
  /external/libchrome/base/metrics/
metrics_hashes.cc 15 // Converts the 8-byte prefix of an MD5 hash into a uint64_t value.
17 uint64_t value; local
18 DCHECK_GE(sizeof(digest.a), sizeof(value));
19 memcpy(&value, digest.a, sizeof(value));
20 return base::NetToHost64(value);
  /external/libchrome/dbus/
object_path.h 18 // assumptions about their value made.
21 // Permit initialization without a value for passing to
29 explicit ObjectPath(const std::string& value) : value_(value) {}
31 // Retrieves value as a std::string.
32 const std::string& value() const { return value_; } function in class:dbus::ObjectPath
34 // Returns true if the value is a valid object path.
  /external/libcxx/src/
typeinfo.cpp 35 size_t value = fnv_offset_basis; variable
37 value ^= static_cast<size_t>(static_cast<unsigned char>(*c));
38 value *= fnv_prime;
42 value ^= value >> 32;
45 return value;
  /external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/
named_overloads.pass.cpp 39 const char* value = longString; local
40 const path p(value);
43 assert(s == value);
  /external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/
make_preferred.pass.cpp 29 const char* value; member in struct:MakePreferredTestcase
48 path p(TC.value);
49 assert(p == TC.value);
51 assert(p.native() == TC.value);
  /external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/
named_overloads.pass.cpp 40 const char* value = longString; local
41 const path p(value);
44 assert(s == value);
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
incomplete_type_helper.h 10 template <class T> struct Holder { T value; }; member in struct:Holder
  /external/libcxx/test/support/test.support/
test_poisoned_hash_helper.pass.cpp 25 enum { value = is_complete<std::hash<T> >() }; enumerator in enum:has_complete_hash::__anon27950
  /external/libcxx/test/support/
user_defined_integral.hpp 15 UserDefinedIntegral() : value(0) {}
16 UserDefinedIntegral(T v) : value(v) {}
17 operator T() const { return value; }
18 T value; member in struct:UserDefinedIntegral
  /external/llvm/test/CodeGen/SystemZ/Large/
branch-range-01.py 94 value = a % 256 variable
96 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-03.py 95 value = a % 256 variable
97 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-04.py 99 value = a % 256 variable
101 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-05.py 98 value = a % 256 variable
100 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-06.py 98 value = a % 256 variable
100 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-09.py 95 value = a % 256 variable
97 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-10.py 99 value = a % 256 variable
101 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-11.py 115 value = a % 256 variable
117 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-12.py 115 value = a % 256 variable
117 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
  /external/ltp/include/
tst_sys_conf.h 12 char value[PATH_MAX]; member in struct:tst_sys_conf
16 int tst_sys_conf_save_str(const char *path, const char *value);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
5-1-buildonly.c 17 struct timespec value; local
20 value = t.it_value;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/
12-1.c 60 union sigval value; local
61 value.sival_int = 0; /* 0 is just an arbitrary value */
73 if (-1 == sigqueue(1, 0, value)) {
  /external/mesa3d/src/mesa/main/tests/
enum_strings.cpp 30 int value; member in struct:enum_info
40 _mesa_enum_to_string(everything[i].value));
  /external/oj-libjdwp/src/share/back/
StringReferenceImpl.c 32 value(PacketInputStream *in, PacketOutputStream *out) function
58 ,(void *)value};
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
StringReference.java 45 * @return the string value.
47 String value(); method in interface:StringReference

Completed in 710 milliseconds

1 2 3 4 5 67 8 91011>>