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

1 2 3 4 5 6 7 891011>>

  /external/vboot_reference/firmware/lib/cgptlib/
crc32.c 106 uint32_t value = ~0U; local
109 value = crc32_tab[(value ^ byte[i]) & 0xff] ^ (value >> 8);
110 return value ^ ~0U;
  /external/webrtc/webrtc/base/
exp_filter_unittest.cc 19 // No max value defined.
24 double value = 10.0f; local
25 EXPECT_FLOAT_EQ(value, filter.filtered());
29 double value; local
35 value = 10.0f;
39 value = alpha * value + (1.0f - alpha) * 20.0f;
40 EXPECT_FLOAT_EQ(value, filter.filtered());
51 double value = 1.0f; local
52 EXPECT_FLOAT_EQ(value, filter.filtered())
56 double value; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
bits2prm.cpp 83 no_of_bits = number of bits associated with value
119 Word16 no_of_bits, // input : number of bits associated with value
123 Word16 value, i, bit;
125 value = 0;
128 value = shl (value, 1);
131 value = add (value, 1);
133 return (value);
163 Word16 no_of_bits, /* input : number of bits associated with value */
167 Word16 value; local
    [all...]
  /art/compiler/utils/
atomic_dex_ref_map_test.cc 36 int value = 123; local
38 EXPECT_FALSE(map.Get(MethodReference(dex.get(), 1), &value));
48 // After we have added the get should succeed but return the default value.
49 EXPECT_TRUE(map.Get(MethodReference(dex.get(), 1), &value));
50 EXPECT_EQ(value, 0);
55 EXPECT_TRUE(map.Get(MethodReference(dex.get(), 1), &value));
56 EXPECT_EQ(value, kInsertValue);
60 EXPECT_TRUE(map.Get(MethodReference(dex.get(), 1), &value));
61 EXPECT_EQ(value, kInsertValue);
62 EXPECT_TRUE(map.Get(MethodReference(dex.get(), 2), &value));
    [all...]
  /art/tools/amm/AmmTest/src/com/android/amm/test/
SoCodeUse.java 20 private int value; field in class:SoCodeUse
26 value = nGetANumber();
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedArrayItem.java 22 public EncodedArray value; field in class:EncodedArrayItem
27 (value = new EncodedArray()).read(file);
33 value.write(file);
OpcodeInfo.java 29 public final int value; field in class:OpcodeInfo
38 this.value = opcodeValue;
  /build/soong/symbol_inject/cmd/
symbol_inject.go 29 from = flag.String("from", "", "optional existing value of the symbol for verification") var
30 value = flag.String("v", "", "value to inject into symbol")
57 if *value == "" {
91 err = symbol_inject.InjectStringSymbol(file, w, *symbol, *value, *from)
  /development/apps/Development/src/com/android/development/
ColumnData.java 26 value = v;
29 public String value; field in class:ColumnData
  /external/antlr/runtime/ObjC/Framework/
Entry.h 12 id value; variable
18 @property(nonatomic, retain) id value; variable
20 + (HTEntry *)newEntry:(NSInteger)h key:(NSString *)k value:(id)v next:(HTEntry *) n;
21 - (id) init:(NSInteger)h key:(NSString *)k value:(id)v next:(HTEntry *)n;
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/data/
CombinedAnnotation.java 27 public SimpleAnnotation[] value(); method in interface:CombinedAnnotation
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
BivariateRealFunction.java 30 * Compute the value for the function.
32 * @param x Abscissa for which the function value should be computed.
33 * @param y Ordinate for which the function value should be computed.
34 * @return the value.
37 double value(double x, double y) method in interface:BivariateRealFunction
MultivariateMatrixFunction.java 31 * Compute the value for the function at the given point.
33 * @return function value for the given point
37 double[][] value(double[] point) method in interface:MultivariateMatrixFunction
MultivariateRealFunction.java 30 * Compute the value for the function at the given point.
32 * @return function value for the given point
36 double value(double[] point) method in interface:MultivariateRealFunction
MultivariateVectorialFunction.java 30 * Compute the value for the function at the given point.
32 * @return function value for the given point
36 double[] value(double[] point) method in interface:MultivariateVectorialFunction
TrivariateRealFunction.java 30 * Compute the value for the function.
32 * @param x x-coordinate for which the function value should be computed.
33 * @param y y-coordinate for which the function value should be computed.
34 * @param z z-coordinate for which the function value should be computed.
35 * @return the value.
38 double value(double x, double y, double z) method in interface:TrivariateRealFunction
UnivariateMatrixFunction.java 30 * Compute the value for the function.
31 * @param x the point for which the function value should be computed
32 * @return the value
35 double[][] value(double x) throws FunctionEvaluationException; method in interface:UnivariateMatrixFunction
UnivariateRealFunction.java 29 * Compute the value for the function.
30 * @param x the point for which the function value should be computed
31 * @return the value
34 double value(double x) throws FunctionEvaluationException; method in interface:UnivariateRealFunction
UnivariateVectorialFunction.java 30 * Compute the value for the function.
31 * @param x the point for which the function value should be computed
32 * @return the value
35 double[] value(double x) throws FunctionEvaluationException; method in interface:UnivariateVectorialFunction
  /external/bcc/tests/python/
test_brb2.c 23 u32 *value = pem_stats.lookup(&index); local
24 if (value)
25 lock_xadd(value, 1);
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/
SupportedPlatform.java 33 Platform.Type[] value(); method in interface:SupportedPlatform
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
reference.py 51 def value(self): member in class:Reference
52 return ''.join(token_snippet.value
56 @value.setter
57 def value(self, value): member in class:Reference
58 value_parts = value.split('.')
69 child.children[-1].value = value_part
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 9 // constrained, it should cast the value to the result type in a binary
27 // Create a value that requires more bits to store than a comparison result.
28 int value = 1; local
29 value <<= 8 * comparisonSize;
30 value += 1;
32 // Constrain the value of x.
33 if (x != value) return;
52 // Constrain the value of x.
59 // Construct a value that cannot be represented by 'char',
61 signed int value = 1 + (1 << 8) local
82 size_t value = 1UL; local
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p4-cxx0x.cpp 5 static const bool value = false; member in struct:is_same
10 static const bool value = true; member in struct:is_same
18 static_assert(is_same<decltype(foo()), const int&&>::value, "");
19 static_assert(is_same<decltype(i), int>::value, "");
20 static_assert(is_same<decltype(a->x), double>::value, ""); variable
21 static_assert(is_same<decltype((a->x)), const double&>::value, ""); variable
22 static_assert(is_same<decltype(static_cast<int&&>(i)), int&&>::value, "");
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 7 static const bool value = false; member in struct:is_same
11 static const bool value = true; member in struct:is_same

Completed in 867 milliseconds

1 2 3 4 5 6 7 891011>>