Searched defs:value (Results 51 - 75 of 922) sorted by relevance

1234567891011>>

/frameworks/av/media/libmedia/
H A DMediaScannerClient.cpp42 status_t MediaScannerClient::addStringTag(const char* name, const char* value) argument
44 handleStringTag(name, value);
/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/av/media/libstagefright/codecs/on2/h264dec/source/
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/av/media/mediaserver/
H A Dmain_mediaserver.cpp47 char value[PROPERTY_VALUE_MAX]; local
48 bool doLog = (property_get("ro.test_harness", value, "0") > 0) && (atoi(value) == 1);
/frameworks/av/media/mtp/
H A DMtpDataPacket.h46 bool getUInt8(uint8_t& value);
47 inline bool getInt8(int8_t& value) { return getUInt8((uint8_t&)value); } argument
48 bool getUInt16(uint16_t& value);
49 inline bool getInt16(int16_t& value) { return getUInt16((uint16_t&)value); } argument
50 bool getUInt32(uint32_t& value);
51 inline bool getInt32(int32_t& value) { return getUInt32((uint32_t&)value); } argument
52 bool getUInt64(uint64_t& value);
53 getInt64(int64_t& value) argument
55 getInt128(int128_t& value) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirOps.h38 static const bool value = false; member in struct:android::is_same
44 static const bool value = true; member in struct:android::is_same
/frameworks/base/core/java/android/animation/
H A DBidirectionalTypeConverter.java20 * is necessary when the value types of in animation are different from the property
21 * type. BidirectionalTypeConverter is needed when only the final value for the
36 * @param value The Object to convert.
37 * @return A value of type T, converted from <code>value</code>.
39 public abstract T convertBack(V value); argument
64 public From convertBack(To value) { argument
65 return mConverter.convert(value);
69 public To convert(From value) { argument
70 return mConverter.convertBack(value);
[all...]
H A DTypeConverter.java21 * is necessary when the value types of in animation are different
51 * Converts a value from one type to another.
52 * @param value The Object to convert.
53 * @return A value of type V, converted from <code>value</code>.
55 public abstract V convert(T value); argument
/frameworks/base/core/java/android/print/
H A DPrintJobId.java43 * @param value The internal value.
47 public PrintJobId(String value) { argument
48 mValue = value;
/frameworks/base/core/java/android/util/
H A DFloatMath.java40 * positive infinity) integer value which is less than the argument.
42 * @param value to be converted
43 * @return the floor of value
46 public static float floor(float value) { argument
47 return (float) Math.floor(value);
52 * negative infinity) integer value which is greater than the argument.
54 * @param value to be converted
55 * @return the ceiling of value
58 public static float ceil(float value) { argument
59 return (float) Math.ceil(value);
92 sqrt(float value) argument
104 exp(float value) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DProcessMap.java32 public E put(String name, int uid, E value) { argument
38 uids.put(uid, value);
39 return value;
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetEventsTest.java76 public void setTranslationX(float value) { argument
77 button.setTranslationX(value);
81 public void setTranslationY(float value) { argument
82 button.setTranslationY(value);
/frameworks/base/graphics/java/android/graphics/
H A DBlurMaskFilter.java48 Blur(int value) { argument
49 native_int = value;
H A DPathDashPathEffect.java26 Style(int value) { argument
27 native_style = value;
/frameworks/base/libs/hwui/utils/
H A DTinyHashMap.h36 void put(TKey key, TValue value) { argument
44 TEntry initEntry(key, value);
49 * Return true if key is in the map, in which case stores the value in the output ref
57 outValue = mTable.entryAt(index).value;
/frameworks/base/media/java/android/media/
H A DMediaScannerClient.java30 public void handleStringTag(String name, String value); argument
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffect.java82 * @param value The new value to set the parameter to.
83 * @throws InvalidArgumentException if parameterName is not a recognized name, or the value is
84 * not a valid value for this parameter.
86 public abstract void setParameter(String parameterKey, Object value); argument
/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DBackDropperEffect.java90 public void setParameter(String parameterKey, Object value) { argument
93 background.setInputValue("sourceUrl", value);
96 background.setInputValue("context", value);
H A DIdentityEffect.java49 public void setParameter(String parameterKey, Object value) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java35 public abstract void setHostValue(String variableName, Object value); argument
H A DProgramVariable.java41 public void setValue(Object value) { argument
46 mProgram.setHostValue(mVarName, value);
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DSettingsStateTest.java107 private void checkWriteSingleSetting(XmlSerializer serializer, String key, String value) argument
109 checkWriteSingleSetting(key + "/" + value, serializer, key, value);
113 String key, String value) throws Exception {
117 serializer, "1", key, value, "package");
151 * In version 120, value "null" meant {code NULL}.
161 " <setting id=\"0\" name=\"k0\" value=\"null\" package=\"null\" />" +
162 " <setting id=\"1\" name=\"k1\" value=\"\" package=\"\" />" +
163 " <setting id=\"2\" name=\"k2\" value=\"v2\" package=\"p2\" />" +
112 checkWriteSingleSetting(String msg, XmlSerializer serializer, String key, String value) argument
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportPrefs.java40 public static void setWarningState(Context context, int value) { argument
43 prefs.edit().putInt(KEY_WARNING_STATE, value).apply();

Completed in 1983 milliseconds

1234567891011>>