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

1 23 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_bytesize.c 42 Dwarf_Word value; local
46 &value) == 0 ? (int) value : -1;
dwarf_srclang.c 42 Dwarf_Word value; local
46 &value) == 0 ? (int) value : -1;
  /external/google-fruit/examples/testing/
key_value_storage.cpp 23 void put(std::string key, std::string value) override {
26 (void) value; variable
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
ExperimentalApi.java 56 String value(); method in interface:ExperimentalApi
  /external/jsr305/sampleUses/src/main/java/
FixedLengthString.java 13 int value(); method in interface:FixedLengthString
21 if (s.length() == annotation.value())
  /external/junit-params/src/main/java/junitparams/converters/
ConvertParam.java 18 Class<? extends ParamConverter<?>> value(); method in interface:ConvertParam
  /external/libchrome/mojo/public/cpp/base/
memory_allocator_dump_cross_process_uid_mojom_traits.h 18 static uint64_t value(const base::trace_event::MemoryAllocatorDumpGuid& id) { function
  /external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/
c_str.pass.cpp 30 const char* const value = "hello world"; local
31 const std::string str_value = value;
33 path p(value);
38 path p(value);
operator_string.pass.cpp 31 const char* const value = "hello world"; local
33 path p(value);
34 static_assert(std::is_convertible<path, string_type>::value, "");
35 static_assert(std::is_constructible<string_type, path>::value, "");
40 path p(value);
41 assert(p.native() == value);
43 assert(s == value);
44 assert(p == value);
  /external/libcxx/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 15 // constexpr bool conjunction_v = conjunction<B...>::value; // C++17
20 struct True { static constexpr bool value = true; }; member in struct:True
21 struct False { static constexpr bool value = false; }; member in struct:False
25 static_assert ( std::conjunction<>::value, "" );
26 static_assert ( std::conjunction<std::true_type >::value, "" );
27 static_assert (!std::conjunction<std::false_type>::value, "" );
33 static_assert ( std::conjunction<std::true_type, std::true_type >::value, "" );
34 static_assert (!std::conjunction<std::true_type, std::false_type>::value, "" );
35 static_assert (!std::conjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::conjunction<std::false_type, std::false_type>::value, "" );
    [all...]
disjunction.pass.cpp 15 // constexpr bool disjunction_v = disjunction<B...>::value; // C++17
20 struct True { static constexpr bool value = true; }; member in struct:True
21 struct False { static constexpr bool value = false; }; member in struct:False
25 static_assert (!std::disjunction<>::value, "" );
26 static_assert ( std::disjunction<std::true_type >::value, "" );
27 static_assert (!std::disjunction<std::false_type>::value, "" );
33 static_assert ( std::disjunction<std::true_type, std::true_type >::value, "" );
34 static_assert ( std::disjunction<std::true_type, std::false_type>::value, "" );
35 static_assert ( std::disjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::disjunction<std::false_type, std::false_type>::value, "" );
    [all...]
negation.pass.cpp 15 // constexpr bool negation_v = negation<B>::value; // C++17
20 struct True { static constexpr bool value = true; }; member in struct:True
21 struct False { static constexpr bool value = false; }; member in struct:False
25 static_assert (!std::negation<std::true_type >::value, "" );
26 static_assert ( std::negation<std::false_type>::value, "" );
31 static_assert (!std::negation<True >::value, "" );
32 static_assert ( std::negation<False>::value, "" );
37 static_assert ( std::negation<std::negation<std::true_type >>::value, "" );
38 static_assert (!std::negation<std::negation<std::false_type>>::value, "" );
  /external/libcxx/test/std/utilities/variant/variant.relops/
relops_bool_conv.fail.cpp 48 bool value; member in struct:MyBoolExplicit
49 constexpr explicit MyBoolExplicit(bool v) : value(v) {}
50 constexpr explicit operator bool() const noexcept { return value; }
54 int value = 0; member in struct:ComparesToMyBoolExplicit
57 return MyBoolExplicit(LHS.value == RHS.value);
60 return MyBoolExplicit(LHS.value != RHS.value);
63 return MyBoolExplicit(LHS.value < RHS.value);
    [all...]
  /external/libdrm/tegra/
tegra.h 57 uint32_t value; member in struct:drm_tegra_bo_tiling
  /external/libmpeg2/common/x86/
impeg2_mem_func_sse42_intr.c 80 * Description : memsets residual buf to value
82 * Arguments : destination buffer, value and stride
90 __m128i value = _mm_set1_epi8((WORD8)dc_val); local
92 _mm_storel_epi64((__m128i *)dst, value);
93 _mm_storel_epi64((__m128i *) (dst + dst_wd), value);
94 _mm_storel_epi64((__m128i *) (dst + 2 * dst_wd), value);
95 _mm_storel_epi64((__m128i *) (dst + 3 * dst_wd), value);
96 _mm_storel_epi64((__m128i *) (dst + 4 * dst_wd), value);
97 _mm_storel_epi64((__m128i *) (dst + 5 * dst_wd), value);
98 _mm_storel_epi64((__m128i *) (dst + 6 * dst_wd), value);
    [all...]
  /external/libopus/silk/float/
sort_FLP.c 46 silk_float value; local
59 /* Sort vector elements by value, decreasing order */
61 value = a[ i ];
62 for( j = i - 1; ( j >= 0 ) && ( value > a[ j ] ); j-- ) {
63 a[ j + 1 ] = a[ j ]; /* Shift value */
66 a[ j + 1 ] = value; /* Write value */
73 value = a[ i ];
74 if( value > a[ K - 1 ] ) {
75 for( j = K - 2; ( j >= 0 ) && ( value > a[ j ] ); j-- )
    [all...]
  /external/libxkbcommon/xkbcommon/src/
text.h 29 unsigned int value; member in struct:__anon30358
37 LookupValue(const LookupEntry tab[], unsigned int value);
  /external/linux-kselftest/tools/testing/selftests/bpf/
sample_map_ret0.c 24 long *value; local
26 value = bpf_map_lookup_elem(&htab, &key);
27 if (!value)
29 value = bpf_map_lookup_elem(&array, &key64);
30 if (!value)
test_obj_id.c 30 __u64 *value; local
32 value = bpf_map_lookup_elem(&test_map_id, &key);
  /external/llvm/test/CodeGen/SystemZ/Large/
branch-range-02.py 69 value = a % 256 variable
73 print ' store volatile i8 %d, i8 *%%base' % value
branch-range-07.py 56 value = a % 256 variable
58 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
branch-range-08.py 57 value = a % 256 variable
59 print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i)
  /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) {

Completed in 1724 milliseconds

1 23 4 5 6 7 8 91011>>