Searched defs:encoded (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/id3/
H A DID3.cpp105 bool ID3::ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x) { argument
108 if (encoded[i] & 0x80) {
112 *x = ((*x) << 7) | encoded[i];
/frameworks/base/core/java/android/net/
H A DUri.java213 * Gets the encoded authority part of this URI. For
233 * Gets the encoded user information from the authority.
242 * Gets the encoded host from the authority for this URI. For example,
267 * Gets the encoded path.
269 * @return the encoded path, or null if this is not a hierarchical URI
285 * Gets the encoded query component from this URI. The query comes after
290 * @return the encoded query or null if there isn't one
302 * Gets the encoded fragment part of this URI, everything after the '#'.
304 * @return the encoded fragment or null if there isn't one
324 * encoded strin
1950 volatile String encoded; field in class:Uri.AbstractPart
1953 AbstractPart(String encoded, String decoded) argument
2001 Part(String encoded, String decoded) argument
2042 fromEncoded(String encoded) argument
2061 from(String encoded, String decoded) argument
2106 PathPart(String encoded, String decoded) argument
2219 fromEncoded(String encoded) argument
2238 from(String encoded, String decoded) argument
[all...]
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp501 // Return the size of the encoded image data (does not include size of PKM header).
510 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
521 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
553 etc1_encode_block(block, mask, encoded);
554 memcpy(pOut, encoded, sizeof(encoded));
555 pOut += sizeof(encoded);
562 // pIn - pointer to encoded data.

Completed in 225 milliseconds