Searched refs:decoded (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java292 String decoded;
306 decoded = GsmAlphabet.gsm7BitPackedToString(input, 0, lengthSeptets);
309 if (null == decoded) {
311 decoded = "";
314 return decoded;
319 String decoded = "";
321 decoded = new String(input, "UTF-8");
327 return decoded;
332 String decoded = "";
334 decoded
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_data.c123 * decoded, needed for error handling */
132 /* primary picture and already decoded macroblock -> error */
133 if (!pSliceHeader->redundantPicCnt && pStorage->mb[currMbAddr].decoded)
135 EPRINT("Primary and already decoded");
193 /* increment macroblock count only for macroblocks that were decoded
195 if (pStorage->mb[currMbAddr].decoded == 1)
223 EPRINT("Num decoded mbs");
339 (pStorage->mb[currMbAddr].decoded) )
341 pStorage->mb[currMbAddr].decoded--;
H A Dh264bsd_conceal.c79 of the type is based on last successfully decoded slice header of
85 slice each corrupted (not successfully decoded) macroblock
89 decoded macroblock and concealing the row containing the macroblock
93 first properly decoded one is as follows (properly decoded
159 /* find first properly decoded macroblock -> start point for concealment */
160 while (i < pStorage->picSizeInMbs && !pStorage->mb[i].decoded)
195 mb[j].decoded = 1;
200 if (!mb[j].decoded)
203 mb[j].decoded
[all...]
H A Dh264bsd_macroblock_layer.h179 u32 decoded; member in struct:mbStorage
H A Dh264bsd_storage.c152 * -> overwrite and re-activate when next IDR picture decoded
155 * otherwise free memeries allocated for just decoded sps and
276 decoded picture buffer. If this is not the first activation the old
457 pStorage->mb[i].decoded = 0;
471 have been successfully decoded for the current access unit.
545 tmp += pStorage->mb[i].decoded ? 1 : 0;
H A Dh264bsd_macroblock_layer.c948 dpb pointer to decoded picture buffer
956 currImage decoded macroblock is written into output image
987 pMb->decoded++;
1003 /* if decoded flag > 1 -> mb has already been successfully decoded and
1005 if (pMb->decoded > 1)
1107 /* if decoded flag > 1 -> mb has already been successfully decoded and
1109 if (pMb->decoded > 1)
H A Dh264bsd_inter_prediction.c182 dpb pointer to decoded picture buffer
323 /* if decoded flag > 1 -> mb has already been successfully decoded and
325 if (pMb->decoded > 1)
345 dpb pointer to decoded picture buffer
465 /* if decoded flag > 1 -> mb has already been successfully decoded and
467 if (pMb->decoded > 1)
H A Dh264bsd_intra_prediction.c519 /* if decoded flag > 1 -> mb has already been successfully decoded and
521 if (pMb->decoded > 1)
/frameworks/base/core/java/android/net/
H A DUri.java182 * @return the decoded scheme-specific-part
194 * @return the decoded scheme-specific-part
199 * Gets the decoded authority part of this URI. For
221 * Gets the decoded user information from the authority.
256 * Gets the decoded path.
258 * @return the decoded path, or null if this is not a hierarchical URI
272 * Gets the decoded query component from this URI. The query comes after
277 * @return the decoded query or null if there isn't one
292 * Gets the decoded fragment part of this URI, everything after the '#'.
294 * @return the decoded fragmen
1948 volatile String decoded; field in class:Uri.AbstractPart
1950 AbstractPart(String encoded, String decoded) argument
1998 Part(String encoded, String decoded) argument
2048 fromDecoded(String decoded) argument
2058 from(String encoded, String decoded) argument
2103 PathPart(String encoded, String decoded) argument
2190 appendDecodedSegment(PathPart oldPart, String decoded) argument
2225 fromDecoded(String decoded) argument
2235 from(String encoded, String decoded) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp246 SkBitmap* decoded; local
248 decoded = new SkBitmap;
250 decoded = bitmap;
252 SkAutoTDelete<SkBitmap> adb2(willScale ? decoded : NULL);
254 if (!decoder->decode(stream, decoded, prefConfig, decodeMode, javaBitmap != NULL)) {
258 int scaledWidth = decoded->width();
259 int scaledHeight = decoded->height();
327 const float sx = scaledWidth / float(decoded->width());
328 const float sy = scaledHeight / float(decoded->height());
330 SkBitmap::Config config = decoded
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmSmsTest.java374 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, 128, 0, language, 0);
375 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, language, 0);
377 assertEquals(sBasicTables[language], decoded);
451 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0,
453 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, 0, language);
455 assertEquals(sExtendedTables[language], decoded);
526 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0,
529 assertEquals(defaultTable.toString(), decoded);
531 decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, 1, language);
532 assertEquals(turkishTable.toString(), decoded);
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s43 ; * same decoded vector.
44 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
51 ; * macroblock which contains four decoded motion vectors
214 BEQ ExitError ;// Exit with an Error Message if the decoded symbol is an invalied symbol
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s43 ; * same decoded vector.
44 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
51 ; * macroblock which contains four decoded motion vectors
214 BEQ ExitError ;// Exit with an Error Message if the decoded symbol is an invalied symbol

Completed in 3543 milliseconds