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

1 23 4 5 6 7 8 91011>>

  /external/dagger2/core/src/main/java/dagger/mapkeys/
IntKey.java 29 int value(); method in interface:IntKey
LongKey.java 29 long value(); method in interface:LongKey
StringKey.java 29 String value(); method in interface:StringKey
  /external/elfutils/libdw/
dwarf_arrayorder.c 42 Dwarf_Word value; local
46 &value) == 0 ? (int) value : -1;
dwarf_bitoffset.c 42 Dwarf_Word value; local
46 &value) == 0 ? (int) value : -1;
dwarf_bitsize.c 42 Dwarf_Word value; local
46 &value) == 0 ? (int) value : -1;
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/fio/
tickmarks.h 5 double value; member in struct:tickmark
  /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/base/memory/
singleton.cc 15 // We know value != NULL. It could be kBeingCreatedMarker, or a valid ptr.
19 subtle::AtomicWord value; local
24 value = subtle::Acquire_Load(instance);
25 if (value != kBeingCreatedMarker)
29 return value;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
c_str.pass.cpp 31 const char* const value = "hello world"; local
32 const std::string str_value = value;
34 path p(value);
39 path p(value);
operator_string.pass.cpp 32 const char* const value = "hello world"; local
34 path p(value);
35 static_assert(std::is_convertible<path, string_type>::value, "");
36 static_assert(std::is_constructible<string_type, path>::value, "");
41 path p(value);
42 assert(p.native() == value);
44 assert(s == value);
45 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/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:__anon26679
37 LookupValue(const LookupEntry tab[], unsigned int value);
  /external/linux-kselftest/tools/testing/selftests/bpf/
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)

Completed in 240 milliseconds

1 23 4 5 6 7 8 91011>>