Searched defs:value (Results 1 - 25 of 572) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdCountLeadingZeros.s25 value RN 0 label
45 CLZ value, value
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdCountLeadingZeros.S24 #define value r0 define
44 CLZ value, value
/frameworks/base/core/java/android/annotation/
H A DSuppressLint.java37 String[] value(); method in interface:SuppressLint
H A DTargetApi.java34 int value(); method in interface:TargetApi
H A DSdkConstant.java25 * Indicates a constant field value should be exported to be used in the SDK tools.
35 SdkConstantType value(); method in interface:SdkConstant
/frameworks/base/core/java/android/webkit/
H A DValueCallback.java24 * Invoked when the value is available.
25 * @param value The value.
27 public void onReceiveValue(T value); argument
H A DCertTool.java71 static void addCertificate(Context context, String type, byte[] value) { argument
72 Credentials.getInstance().install(context, type, value);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPorts.java28 GenerateProgramPort[] value(); method in interface:GenerateProgramPorts
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h29 void* value; member in struct:__anon36
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value);
39 char* GetMutableBufferValue(Value value);
40 int* GetIntArrayValue(Value value);
41 float* GetFloatArrayValue(Value value);
44 int ValueIsNull(Value value);
45 int ValueIsInt(Value value);
[all...]
H A Dstatistics.cpp34 void IncrementalGaussian::Add(float value) { argument
36 sum_x_ += value;
37 sum_x2_ += value * value;
50 float IncrementalGaussian::Pdf(float value) const {
51 if (var_ == 0.0f) { return n_ > 0 ? value == mean_ : 0.0f; }
52 const float diff = value - mean_;
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dget_amr_wb_bits.cpp121 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...]
/frameworks/base/cmds/bootanimation/
H A Dbootanimation_main.cpp45 char value[PROPERTY_VALUE_MAX]; local
46 property_get("debug.sf.nobootanimation", value, "0");
47 int noBootAnimation = atoi(value);
/frameworks/base/core/java/com/android/internal/util/
H A DFastMath.java29 public static int round(float value) { argument
30 long lx = (long) (value * (65536 * 256f));
/frameworks/base/core/jni/android/graphics/
H A DHarfbuzzSkia.h45 static inline HB_Fixed SkScalarToHBFixed(SkScalar value) { argument
47 return SkScalarToFloat(value) * 64.0f;
/frameworks/base/include/androidfw/
H A DKeycodeLabels.h24 int value; member in struct:KeycodeLabel
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dbits2prm.cpp83 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...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_pic_param_set.c94 u32 tmp, i, value; local
139 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
142 pPicParamSet->numSliceGroups = value + 1;
170 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
173 pPicParamSet->runLength[i] = value+1;
188 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
191 pPicParamSet->topLeft[i] = value;
192 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
195 pPicParamSet->bottomRight[i] = value;
208 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
[all...]
H A Dh264bsd_seq_param_set.c50 /* enumeration to indicate invalid return value from the GetDpbSize function */
88 u32 tmp, i, value; local
138 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
141 if (value > 12)
147 pSeqParamSet->maxFrameNum = 1 << (value+4);
150 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
153 if (value > 2)
158 pSeqParamSet->picOrderCntType = value;
163 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &value);
166 if (value > 1
[all...]
H A Dh264bsd_vlc.c50 /* definition of special code num, this along with the return value is used
81 2^32-1 is indicated by BIG_CODE_NUM with return value HANTRO_OK
82 while symbol 2^32 is indicated by BIG_CODE_NUM with return value
88 DecodeExpGolombSigned to express value -2^31.
214 by unsigned 32-bit value. This is signaled as a special case from
222 value decoded code word is stored here
230 u32 h264bsdDecodeExpGolombSigned(strmData_t *pStrmData, i32 *value) argument
240 ASSERT(value);
255 *value = (i32)(2147483648U);
263 * (codeNum+1)>>1 when value i
300 h264bsdDecodeExpGolombMapped(strmData_t *pStrmData, u32 *value, u32 isIntra) argument
363 h264bsdDecodeExpGolombTruncated( strmData_t *pStrmData, u32 *value, u32 greaterThanOne) argument
[all...]
/frameworks/base/core/java/android/util/
H A DFloatProperty.java41 public abstract void setValue(T object, float value); argument
44 final public void set(T object, Float value) { argument
45 setValue(object, value);
H A DIntProperty.java41 public abstract void setValue(T object, int value); argument
44 final public void set(T object, Integer value) { argument
45 set(object, value.intValue());
H A DFloatMath.java34 * positive infinity) integer value which is less than the argument.
36 * @param value to be converted
37 * @return the floor of value
39 public static native float floor(float value); argument
43 * negative infinity) integer value which is greater than the argument.
45 * @param value to be converted
46 * @return the ceiling of value
48 public static native float ceil(float value); argument
70 * @param value to compute sqrt of
71 * @return the square root of value
73 sqrt(float value) argument
82 exp(float value) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dprm2bits.cpp91 value = value to be converted to binary of type Word16
92 no_of_bits = number of bits associated with value of type Word16
128 Word16 value, // input : value to be converted to binary
129 Word16 no_of_bits, // input : number of bits associated with value
139 bit = value & MASK;
148 value = shr (value, 1);
179 Word16 value, /* inpu
178 Int2bin( Word16 value, Word16 no_of_bits, Word16 *bitstream ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dbits.c188 Word16 value, /* input : parameter value */
197 bit = (Word16) (value & 0x0001); /* get lsb */
202 value >>= 1;
187 Parm_serial( Word16 value, Word16 no_of_bits, Word16 ** prms ) argument
/frameworks/base/core/java/android/text/
H A DAnnotation.java22 * Annotations are simple key-value pairs that are preserved across
30 public Annotation(String key, String value) { argument
32 mValue = value;

Completed in 2839 milliseconds

1234567891011>>