HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 76 - 100 of 36195) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwb/src/
get_amr_wb_bits.cpp 121 int16 value = 0; local
126 value <<= 2;
130 value |= 2;
135 value |= 1;
142 value <<= 1;
146 value |= 1;
151 return (value);
157 int16 value = 0; local
161 value = 1;
163 return (value);
    [all...]
  /art/test/557-checker-instruct-simplifier-ror/src/
Main.java 46 public static int rotateIntegerRight(int value, int distance) {
47 return java.lang.Integer.rotateRight(value, distance);
66 public static int rotateIntegerLeft(int value, int distance) {
67 return java.lang.Integer.rotateLeft(value, distance);
85 public static long rotateLongRight(long value, int distance) {
86 return java.lang.Long.rotateRight(value, distance);
105 public static long rotateLongLeft(long value, int distance) {
106 return java.lang.Long.rotateLeft(value, distance);
129 public static int ror_int_constant_c_c(int value) {
130 return (value >>> 2) | (value << 30)
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/utils/
debug.cpp 42 int value = 0; local
43 debug_.debug_handler_->GetProperty("sdm.composition_simulation", &value);
45 return value;
49 int value = 0; local
50 debug_.debug_handler_->GetProperty("hw.hdmi.resolution", &value);
52 return value;
56 int value = IDLE_TIMEOUT_DEFAULT_MS; local
57 debug_.debug_handler_->GetProperty("sdm.idle_time", &value);
59 return UINT32(value);
63 int value = 0 local
70 int value = 0; local
77 int value = 0; local
84 int value = -1; local
103 int value = 0; local
110 int value = 0; local
117 int value = 0; local
124 int value = 0; local
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
MutableFloat.java 9 private float value; field in class:MutableFloat
11 public MutableFloat(float value) {
12 this.value = value;
15 public void setValue(float value) {
16 this.value = value;
19 @Override public int intValue() {return (int) value;}
20 @Override public long longValue() {return (long) value;}
21 @Override public float floatValue() {return (float) value;}
    [all...]
MutableInteger.java 9 private int value; field in class:MutableInteger
11 public MutableInteger(int value) {
12 this.value = value;
15 public void setValue(int value) {
16 this.value = value;
19 @Override public int intValue() {return (int) value;}
20 @Override public long longValue() {return (long) value;}
21 @Override public float floatValue() {return (float) value;}
    [all...]
  /external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 120 public void writeDouble(final int fieldNumber, final double value)
123 writeDoubleNoTag(value);
127 public void writeFloat(final int fieldNumber, final float value)
130 writeFloatNoTag(value);
134 public void writeUInt64(final int fieldNumber, final long value)
137 writeUInt64NoTag(value);
141 public void writeInt64(final int fieldNumber, final long value)
144 writeInt64NoTag(value);
148 public void writeInt32(final int fieldNumber, final int value)
151 writeInt32NoTag(value);
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9.cpp 7 static const bool value = 0; member in struct:X
12 static const bool value = 1; member in struct:X
15 int check0[X<1, 2>::value == 0? 1 : -1];
16 int check1[X<1, 1>::value == 1? 1 : -1];
19 static const unsigned value = 0; member in struct:int_values
24 static const unsigned value = 1; member in struct:int_values
27 int check2[int_values<256, 12, 3>::value == 0? 1 : -1];
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
PrintingHelper.java 28 static String printToString(Object value) {
29 if (value instanceof Printable) {
30 return ((Printable)value).asString();
32 if (value instanceof Enum) {
33 return ((Enum) value).name().toLowerCase();
35 if (value != null) {
36 return value.toString();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
EndPointLengthEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 0.05) evaluation += 2.0;
23 if (value < 0.1) evaluation += 2.0;
24 if (value < 0.2) evaluation += 2.0;
25 if (value < 0.3) evaluation += 2.0;
26 if (value < 0.4) evaluation += 2.0;
27 if (value < 0.5) evaluation += 2.0;
EndPointRatioEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 0.85) evaluation++;
23 if (value < 0.75) evaluation++;
24 if (value < 0.65) evaluation++;
25 if (value < 0.55) evaluation++;
26 if (value < 0.45) evaluation++;
27 if (value < 0.35) evaluation++;
LengthCountEvaluator.java 24 public static float evaluate(float value) {
26 if (value < 0.09) evaluation++;
27 if (value < 0.05) evaluation++;
28 if (value < 0.02) evaluation++;
29 if (value > 0.6) evaluation++;
30 if (value > 0.9) evaluation++;
31 if (value > 1.2) evaluation++;
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
AnglesVarianceEvaluator.java 20 public static float evaluate(float value) {
22 if (value > 0.05) {
25 if (value > 0.10) {
28 if (value > 0.20) {
31 if (value > 0.40) {
34 if (value > 0.80) {
37 if (value > 1.50) {
EndPointLengthEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 0.05) {
25 if (value < 0.1) {
28 if (value < 0.2) {
31 if (value < 0.3) {
34 if (value < 0.4) {
37 if (value < 0.5) {
EndPointRatioEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 0.85) {
25 if (value < 0.75) {
28 if (value < 0.65) {
31 if (value < 0.55) {
34 if (value < 0.45) {
37 if (value < 0.35) {
LengthCountEvaluator.java 23 public static float evaluate(float value) {
25 if (value < 0.09) {
28 if (value < 0.05) {
31 if (value < 0.02) {
34 if (value > 0.6) {
37 if (value > 0.9) {
40 if (value > 1.2) {
  /external/deqp/framework/opengl/
gluStrUtilPrototypes.inl 6 const char* getErrorName (int value);
7 const char* getTypeName (int value);
8 const char* getParamQueryName (int value);
9 const char* getProgramParamName (int value);
10 const char* getUniformParamName (int value);
11 const char* getFramebufferAttachmentName (int value);
12 const char* getFramebufferAttachmentParameterName (int value);
13 const char* getFramebufferTargetName (int value);
14 const char* getFramebufferStatusName (int value);
15 const char* getFramebufferAttachmentTypeName (int value);
    [all...]
  /libcore/ojluni/src/main/java/java/util/function/
DoublePredicate.java 46 * @param value the input argument
50 boolean test(double value);
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
    [all...]
IntPredicate.java 46 * @param value the input argument
50 boolean test(int value);
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
    [all...]
LongPredicate.java 46 * @param value the input argument
50 boolean test(long value);
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
    [all...]
  /external/annotation-tools/annotation-file-utilities/tests/ad-hoc/bridge/
C.java 4 String value = ""; field in class:C
8 return value.compareTo(other.value);
  /external/compiler-rt/test/asan/TestCases/Helpers/
init-order-atexit-extra.cc 5 C() { value = 42; }
7 int value; member in class:C
13 printf("C value: %d\n", c.value);
  /external/swiftshader/src/OpenGL/compiler/
util.h 24 // 2. it sets the value to FLT_MAX if overflow happens.
26 bool atof_clamp(const char *str, float *value);
28 // If overflow happens, value is set to INT_MAX.
30 bool atoi_clamp(const char *str, int *value);
32 // If overflow happens, value is set to UINT_MAX.
34 bool atou_clamp(const char *str, unsigned int *value);
  /external/syslinux/gpxe/src/core/
bitops.c 6 unsigned long value = x; local
9 for ( ls = 0 ; value ; ls++ ) {
10 value >>= 1;
  /frameworks/base/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon45868
32 } Value;
34 // TODO: Probably should make these const Value*?
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value)
    [all...]
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpReplyCode.java 29 * to the numerical value according to the various RFCs (RFC 959 in
87 private final int value; field in class:FtpReplyCode
90 this.value = val;
94 * Returns the numerical value of the code.
96 * @return the numerical value.
99 return value;
104 * This means beginning with a 1 (which means a value between 100 and 199)
110 return value >= 100 && value < 200;
115 * This means beginning with a 2 (which means a value between 200 and 299
    [all...]

Completed in 647 milliseconds

1 2 34 5 6 7 8 91011>>