Searched refs:value (Results 276 - 300 of 11587) sorted by relevance

<<11121314151617181920>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
H A DCAVLCWriter.java40 public void writeU(int value, int n, String string) throws IOException { argument
42 writeNBit(value, n);
43 Debug.println("\t" + value);
46 public void writeUE(int value) throws IOException { argument
50 if (value < cumul + (1 << i)) {
58 writeNBit(value - cumul, bits);
61 public void writeUE(int value, String string) throws IOException { argument
63 writeUE(value);
64 Debug.println("\t" + value);
67 public void writeSE(int value, Strin argument
73 writeBool(boolean value, String string) argument
83 writeNBit(long value, int n, String string) argument
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedLong.java51 private final long value; field in class:UnsignedLong
53 private UnsignedLong(long value) { argument
54 this.value = value;
59 * The argument is interpreted as an unsigned 64-bit value. Specifically, the sign bit
76 * Returns an {@code UnsignedLong} representing the same value as the specified {@code long}.
78 * @throws IllegalArgumentException if {@code value} is negative
81 public static UnsignedLong valueOf(long value) { argument
82 checkArgument(value >= 0,
83 "value (
93 valueOf(BigInteger value) argument
[all...]
/external/libcxx/test/libcxx/strings/
H A Diterators.exceptions.pass.cpp40 static_assert(( std::__libcpp_string_gets_noexcept_iterator<char *>::value), "");
41 static_assert(( std::__libcpp_string_gets_noexcept_iterator<const char *>::value), "");
43 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::move_iterator<char *> > ::value), "");
44 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::move_iterator<const char *> >::value), "");
45 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::reverse_iterator<char *> > ::value), "");
46 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::reverse_iterator<const char *> >::value), "");
48 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::__wrap_iter<char *> > ::value), "");
49 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::__wrap_iter<const char *> >::value), "");
51 static_assert(( std::__libcpp_string_gets_noexcept_iterator<std::reverse_iterator<std::__wrap_iter<char *> > > ::value), "");
54 static_assert(std::__libcpp_string_gets_noexcept_iterator<output_iterator <char *> >::value
[all...]
/external/libcxx/test/libcxx/type_traits/
H A Dlazy_metafunctions.pass.cpp35 static_assert(std::is_same<T, T>::value == false, "");
42 static const int value = Value; member in struct:NextInt
46 const int NextInt<Value>::value; member in class:NextInt
67 static_assert(HasType<Result>::value, "");
68 static_assert(Result::type::value == 1, "");
72 static_assert(!HasType<Result>::value, "");
79 static_assert(std::is_same<typename NotT::type, FalseT>::value, "");
80 static_assert(NotT::value == false, "");
84 static_assert(std::is_same<typename NotT::type, TrueT>::value, "");
85 static_assert(NotT::value
[all...]
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
H A Dmkvmuxerutil.h31 // Writes out |value| in Big Endian order. Returns 0 on success.
32 int32 SerializeInt(IMkvWriter* writer, int64 value, int32 size);
35 int32 GetUIntSize(uint64 value);
36 int32 GetIntSize(int64 value);
37 int32 GetCodedUIntSize(uint64 value);
38 uint64 EbmlMasterElementSize(uint64 type, uint64 value);
39 uint64 EbmlElementSize(uint64 type, int64 value);
40 uint64 EbmlElementSize(uint64 type, uint64 value);
41 uint64 EbmlElementSize(uint64 type, float value);
42 uint64 EbmlElementSize(uint64 type, const char* value);
[all...]
/external/v8/src/base/
H A Dbits.cc16 uint32_t RoundUpToPowerOfTwo32(uint32_t value) { argument
17 DCHECK_LE(value, 0x80000000u);
18 value = value - 1;
19 value = value | (value >> 1);
20 value = value | (value >>
29 int64_t const value = static_cast<int64_t>(lhs) * static_cast<int64_t>(rhs); local
53 FromCheckedNumeric(const internal::CheckedNumeric<int64_t> value) argument
[all...]
/external/fio/
H A Djson.c19 static struct json_pair *json_create_pair(const char *name, struct json_value *value) argument
24 pair->value = value;
26 value->parent_type = JSON_PARENT_TYPE_PAIR;
27 value->parent_pair = pair;
34 struct json_value *value = malloc(sizeof(struct json_value)); local
36 if (value) {
37 value->type = JSON_TYPE_INTEGER;
38 value->integer_number = number;
40 return value;
45 struct json_value *value = malloc(sizeof(struct json_value)); local
85 struct json_value *value = malloc(sizeof(struct json_value)); local
100 struct json_value *value = malloc(sizeof(struct json_value)); local
112 struct json_value *value = malloc(sizeof(struct json_value)); local
152 json_free_value(struct json_value *value) argument
168 json_array_add_value(struct json_array *array, struct json_value *value) argument
200 struct json_value *value; local
237 struct json_value *value; local
285 json_value_level(struct json_value *value) argument
340 json_print_value(struct json_value *value) argument
[all...]
/external/clang/test/SemaCXX/
H A Dissue547.cpp6 static const unsigned value = 0; member in struct:classify_function
11 static const unsigned value = 1; member in struct:classify_function
16 static const unsigned value = 2; member in struct:classify_function
21 static const unsigned value = 3; member in struct:classify_function
26 static const unsigned value = 4; member in struct:classify_function
31 static const unsigned value = 5; member in struct:classify_function
36 static const unsigned value = 6; member in struct:classify_function
41 static const unsigned value = 7; member in struct:classify_function
46 static const unsigned value = 8; member in struct:classify_function
51 static const unsigned value member in struct:classify_function
56 static const unsigned value = 10; member in struct:classify_function
[all...]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DStringLiteral.java24 /** Returns a new {@link StringLiteral} instance for the intended value of the literal. */
25 public static StringLiteral forValue(String value) { argument
26 return new StringLiteral(value, stringLiteral(value));
30 private static String stringLiteral(String value) { argument
33 for (int i = 0; i < value.length(); i++) {
34 char c = value.charAt(i);
69 private final String value; field in class:StringLiteral
72 private StringLiteral(String value, String literal) { argument
73 this.value
77 public String value() { method in class:StringLiteral
[all...]
/external/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp19 le_int8 LXUtilities::highBit(le_int32 value) argument
21 if (value <= 0) {
27 if (value >= 1 << 16) {
28 value >>= 16;
32 if (value >= 1 << 8) {
33 value >>= 8;
37 if (value >= 1 << 4) {
38 value >>= 4;
42 if (value >= 1 << 2) {
43 value >>
55 search(le_int32 value, const le_int32 array[], le_int32 count) argument
[all...]
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Darray.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert( std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dclass.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Denum.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dfloating_point.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert( std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dintegral.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert( std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dlvalue_ref.pass.cpp21 static_assert(!std::is_void<T>::value, "");
23 static_assert(!std::is_null_pointer<T>::value, "");
25 static_assert(!std::is_integral<T>::value, "");
26 static_assert(!std::is_floating_point<T>::value, "");
27 static_assert(!std::is_array<T>::value, "");
28 static_assert(!std::is_pointer<T>::value, "");
29 static_assert( std::is_lvalue_reference<T>::value, "");
30 static_assert(!std::is_rvalue_reference<T>::value, "");
31 static_assert(!std::is_member_object_pointer<T>::value, "");
32 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dmember_object_pointer.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert( std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dnullptr.pass.cpp23 static_assert(!std::is_void<T>::value, "");
24 static_assert( std::is_null_pointer<T>::value, "");
25 static_assert(!std::is_integral<T>::value, "");
26 static_assert(!std::is_floating_point<T>::value, "");
27 static_assert(!std::is_array<T>::value, "");
28 static_assert(!std::is_pointer<T>::value, "");
29 static_assert(!std::is_lvalue_reference<T>::value, "");
30 static_assert(!std::is_rvalue_reference<T>::value, "");
31 static_assert(!std::is_member_object_pointer<T>::value, "");
32 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dpointer.pass.cpp21 static_assert(!std::is_void<T>::value, "");
23 static_assert(!std::is_null_pointer<T>::value, "");
25 static_assert(!std::is_integral<T>::value, "");
26 static_assert(!std::is_floating_point<T>::value, "");
27 static_assert(!std::is_array<T>::value, "");
28 static_assert( std::is_pointer<T>::value, "");
29 static_assert(!std::is_lvalue_reference<T>::value, "");
30 static_assert(!std::is_rvalue_reference<T>::value, "");
31 static_assert(!std::is_member_object_pointer<T>::value, "");
32 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Drvalue_ref.pass.cpp22 static_assert(!std::is_void<T>::value, "");
24 static_assert(!std::is_null_pointer<T>::value, "");
26 static_assert(!std::is_integral<T>::value, "");
27 static_assert(!std::is_floating_point<T>::value, "");
28 static_assert(!std::is_array<T>::value, "");
29 static_assert(!std::is_pointer<T>::value, "");
30 static_assert(!std::is_lvalue_reference<T>::value, "");
31 static_assert( std::is_rvalue_reference<T>::value, "");
32 static_assert(!std::is_member_object_pointer<T>::value, "");
33 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dunion.pass.cpp20 static_assert(!std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
H A Dvoid.pass.cpp20 static_assert( std::is_void<T>::value, "");
22 static_assert(!std::is_null_pointer<T>::value, "");
24 static_assert(!std::is_integral<T>::value, "");
25 static_assert(!std::is_floating_point<T>::value, "");
26 static_assert(!std::is_array<T>::value, "");
27 static_assert(!std::is_pointer<T>::value, "");
28 static_assert(!std::is_lvalue_reference<T>::value, "");
29 static_assert(!std::is_rvalue_reference<T>::value, "");
30 static_assert(!std::is_member_object_pointer<T>::value, "");
31 static_assert(!std::is_member_function_pointer<T>::value, "");
[all...]
/external/llvm/bindings/ocaml/transforms/ipo/
H A Dipo_ocaml.c23 CAMLprim value llvm_add_argument_promotion(LLVMPassManagerRef PM) {
29 CAMLprim value llvm_add_constant_merge(LLVMPassManagerRef PM) {
35 CAMLprim value llvm_add_dead_arg_elimination(LLVMPassManagerRef PM) {
41 CAMLprim value llvm_add_function_attrs(LLVMPassManagerRef PM) {
47 CAMLprim value llvm_add_function_inlining(LLVMPassManagerRef PM) {
53 CAMLprim value llvm_add_always_inliner(LLVMPassManagerRef PM) {
59 CAMLprim value llvm_add_global_dce(LLVMPassManagerRef PM) {
65 CAMLprim value llvm_add_global_optimizer(LLVMPassManagerRef PM) {
71 CAMLprim value llvm_add_ip_constant_propagation(LLVMPassManagerRef PM) {
77 CAMLprim value llvm_add_prune_e
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_yuv.c50 uint32_t value; local
54 value = *src++;
57 value = util_bswap32(value);
60 r = ubyte_to_float((value >> 0) & 0xff);
61 g0 = ubyte_to_float((value >> 8) & 0xff);
62 b = ubyte_to_float((value >> 16) & 0xff);
63 g1 = ubyte_to_float((value >> 24) & 0xff);
79 value = *src;
82 value
112 uint32_t value; local
175 uint32_t value; local
232 uint32_t value; local
302 uint32_t value; local
364 uint32_t value; local
427 uint32_t value; local
484 uint32_t value; local
554 uint32_t value; local
610 uint32_t value; local
667 uint32_t value; local
728 uint32_t value; local
807 uint32_t value; local
863 uint32_t value; local
920 uint32_t value; local
981 uint32_t value; local
[all...]
/external/swiftshader/third_party/LLVM/bindings/ocaml/transforms/ipo/
H A Dipo_ocaml.c23 CAMLprim value llvm_add_argument_promotion(LLVMPassManagerRef PM) {
29 CAMLprim value llvm_add_constant_merge(LLVMPassManagerRef PM) {
35 CAMLprim value llvm_add_dead_arg_elimination(LLVMPassManagerRef PM) {
41 CAMLprim value llvm_add_function_attrs(LLVMPassManagerRef PM) {
47 CAMLprim value llvm_add_function_inlining(LLVMPassManagerRef PM) {
53 CAMLprim value llvm_add_always_inliner_pass(LLVMPassManagerRef PM) {
59 CAMLprim value llvm_add_global_dce(LLVMPassManagerRef PM) {
65 CAMLprim value llvm_add_global_optimizer(LLVMPassManagerRef PM) {
71 CAMLprim value llvm_add_ipc_propagation(LLVMPassManagerRef PM) {
77 CAMLprim value llvm_add_prune_e
[all...]

Completed in 4830 milliseconds

<<11121314151617181920>>