Searched defs:encoded (Results 101 - 125 of 147) sorted by relevance

123456

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Disacfix.c348 * - encoded : the encoded data vector
359 uint8_t* encoded)
392 /* The encoded data vector is supposesd to be big-endian, but our internal
397 encoded[2 * k] = s >> 8; /* ...most significant byte at low address... */
398 encoded[2 * k + 1] = s; /* ...least significant byte at high address. */
401 /* The encoded data vector and our internal representation are both
403 memcpy(encoded, ISAC_inst->ISACenc_obj.bitstr_obj.stream, stream_len_even);
431 * - encoded : the encoded dat
357 WebRtcIsacfix_Encode(ISACFIX_MainStruct *ISAC_main_inst, const int16_t *speechIn, uint8_t* encoded) argument
440 WebRtcIsacfix_EncodeNb(ISACFIX_MainStruct *ISAC_main_inst, const int16_t *speechIn, int16_t *encoded) argument
522 WebRtcIsacfix_GetNewBitStream(ISACFIX_MainStruct *ISAC_main_inst, int16_t bweIndex, float scale, int16_t *encoded) argument
623 WebRtcIsacfix_UpdateBwEstimate1(ISACFIX_MainStruct *ISAC_main_inst, const uint16_t *encoded, int32_t packet_size, uint16_t rtp_seq_number, uint32_t arr_ts) argument
706 WebRtcIsacfix_UpdateBwEstimate(ISACFIX_MainStruct *ISAC_main_inst, const uint16_t *encoded, int32_t packet_size, uint16_t rtp_seq_number, uint32_t send_ts, uint32_t arr_ts) argument
791 WebRtcIsacfix_Decode(ISACFIX_MainStruct *ISAC_main_inst, const uint16_t *encoded, int16_t len, int16_t *decoded, int16_t *speechType) argument
894 WebRtcIsacfix_DecodeNb(ISACFIX_MainStruct *ISAC_main_inst, const uint16_t *encoded, int16_t len, int16_t *decoded, int16_t *speechType) argument
1298 WebRtcIsacfix_ReadFrameLen(const int16_t* encoded, int16_t* frameLength) argument
1343 WebRtcIsacfix_ReadBwIndex(const int16_t* encoded, int16_t* rateIndex) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_isac.cc359 "ISAC Has encoded the whole frame but no bit-stream is "
727 int ACMISAC::Decode(const uint8_t* encoded, argument
735 reinterpret_cast<const uint16_t*>(encoded),
766 int ACMISAC::DecodeRedundant(const uint8_t* encoded, argument
774 reinterpret_cast<const uint16_t*>(encoded),
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec_unittest.cc283 std::vector<unsigned char> encoded; local
287 &encoded));
292 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
312 std::vector<unsigned char> encoded; local
316 &encoded));
321 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
341 std::vector<unsigned char> encoded; local
345 &encoded));
371 std::vector<unsigned char> encoded; local
416 std::vector<unsigned char> encoded; local
459 std::vector<unsigned char> encoded; local
502 std::vector<unsigned char> encoded; local
535 std::vector<unsigned char> encoded; local
572 std::vector<unsigned char> encoded; local
608 std::vector<unsigned char> encoded; local
646 std::vector<unsigned char> encoded; local
684 std::vector<unsigned char> encoded; local
713 std::vector<unsigned char> encoded; local
742 std::vector<unsigned char> encoded; local
779 std::vector<unsigned char> encoded; local
816 std::vector<unsigned char> encoded; local
847 std::vector<unsigned char> encoded; local
880 std::vector<unsigned char> encoded; local
950 std::vector<unsigned char> encoded; local
1009 std::vector<unsigned char> encoded; local
1036 std::vector<unsigned char> encoded; local
1063 std::vector<unsigned char> encoded; local
1087 std::vector<unsigned char> encoded; local
1126 std::vector<unsigned char> encoded; local
[all...]
/external/chromium_org/chrome/browser/custom_handlers/
H A Dprotocol_handler_registry.cc811 base::DictionaryValue* encoded = j->Encode(); local
813 encoded->Set("default", new base::FundamentalValue(true));
815 protocol_handlers->Append(encoded);
/external/chromium_org/content/browser/devtools/
H A Drenderer_overrides_handler.cc652 bool encoded; local
654 encoded = gfx::PNGCodec::Encode(
661 encoded = gfx::JPEGCodec::Encode(
669 encoded = false;
672 if (!encoded)
/external/chromium_org/courgette/
H A Dencoded_program.cc775 Status WriteEncodedProgram(EncodedProgram* encoded, SinkStreamSet* sink) { argument
776 if (!encoded->WriteTo(sink))
782 EncodedProgram* encoded = new EncodedProgram(); local
783 if (encoded->ReadFrom(streams)) {
784 *output = encoded;
787 delete encoded;
791 Status Assemble(EncodedProgram* encoded, SinkStream* buffer) { argument
792 bool assembled = encoded->AssembleTo(buffer);
798 void DeleteEncodedProgram(EncodedProgram* encoded) { argument
799 delete encoded;
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc215 static bool LookingAtNAL(const unsigned char* encoded, size_t pos) { argument
217 return pos + 3 < kDataLen && encoded[pos] == 0 && encoded[pos + 1] == 0 &&
218 encoded[pos + 2] == 0 && encoded[pos + 3] == 1;
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc216 static bool LookingAtNAL(const unsigned char* encoded, size_t pos) { argument
218 return pos + 3 < kDataLen && encoded[pos] == 0 && encoded[pos + 1] == 0 &&
219 encoded[pos + 2] == 0 && encoded[pos + 3] == 1;
H A Dvideo_decode_dev.cc305 static bool LookingAtNAL(const unsigned char* encoded, size_t pos) { argument
307 encoded[pos] == 0 && encoded[pos + 1] == 0 &&
308 encoded[pos + 2] == 0 && encoded[pos + 3] == 1;
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKURL.cpp106 CString encoded = m_encoding->normalizeAndEncode(String(input, inputLength), WTF::URLEncodedEntitiesForUnencodables); variable
107 output->Append(encoded.data(), static_cast<int>(encoded.length()));
218 // Any query portion of the relative URL will be encoded in the given encoding.
/external/chromium_org/third_party/android_opengl/etc1/
H A Detc1.cpp523 // Return the size of the encoded image data.
532 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
545 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
586 // block that must be properly encoded, so pad
596 // block that must be properly encoded, so pad the
604 etc1_encode_block(block, mask, encoded);
605 memcpy(pOut, encoded, sizeof(encoded));
628 etc1_encode_block(block, mask, encoded);
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_test.cc283 std::string encoded; local
284 AppendInternalKey(&encoded, ikey);
285 iter_->Seek(encoded);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_fxt1.c1323 GLuint *encoded = (GLuint *)dest; local
1358 fxt1_quantize(encoded, lines, comps);
1360 encoded += 4;
1362 encoded += destRowStride;
/external/chromium_org/third_party/skia/third_party/etc1/
H A Detc1.cpp509 // Return the size of the encoded image data (does not include size of PKM header).
518 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
529 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
561 etc1_encode_block(block, mask, encoded);
562 memcpy(pOut, encoded, sizeof(encoded));
563 pOut += sizeof(encoded);
570 // pIn - pointer to encoded data.
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Disac.c185 * - bandwidthIndex : an index which has to be encoded in
189 * or low and it is encoded in upper-band
488 * - encoded : the encoded data vector
499 uint8_t* encoded) {
645 memcpy(encoded, instLB->ISACencLB_obj.bitstr_obj.stream, streamLenLB);
648 encoded[streamLenLB] = streamLenUB + 1 + LEN_CHECK_SUM_WORD8;
649 memcpy(&encoded[streamLenLB + 1],
652 streamLen += encoded[streamLenLB];
654 encoded[streamLenL
497 WebRtcIsac_Encode(ISACStruct* ISAC_main_inst, const int16_t* speechIn, uint8_t* encoded) argument
785 WebRtcIsac_GetNewBitStream(ISACStruct* ISAC_main_inst, int16_t bweIndex, int16_t jitterInfo, int32_t rate, int16_t* encoded, int16_t isRCU) argument
999 WebRtcIsac_UpdateBwEstimate(ISACStruct* ISAC_main_inst, const uint16_t* encoded, int32_t packet_size, uint16_t rtp_seq_number, uint32_t send_ts, uint32_t arr_ts) argument
1049 Decode(ISACStruct* ISAC_main_inst, const uint16_t* encoded, int16_t lenEncodedBytes, int16_t* decoded, int16_t* speechType, int16_t isRCUPayload) argument
1349 WebRtcIsac_Decode(ISACStruct* ISAC_main_inst, const uint16_t* encoded, int16_t lenEncodedBytes, int16_t* decoded, int16_t* speechType) argument
1381 WebRtcIsac_DecodeRcu(ISACStruct* ISAC_main_inst, const uint16_t* encoded, int16_t lenEncodedBytes, int16_t* decoded, int16_t* speechType) argument
1737 WebRtcIsac_ReadBwIndex(const int16_t* encoded, int16_t* bweIndex) argument
1785 WebRtcIsac_ReadFrameLen(ISACStruct* ISAC_main_inst, const int16_t* encoded, int16_t* frameLength) argument
2098 WebRtcIsac_GetRedPayload(ISACStruct* ISAC_main_inst, int16_t* encoded) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPencode.cc78 int NetEQTest_encode(int coder, int16_t *indata, int frameLen, unsigned char * encoded,int sampleRate , int * vad, int useVAD, int bitrate, int numChannels);
632 // interleave the encoded payload for sample-based codecs (not for CNG)
1535 int NetEQTest_encode(int coder, int16_t *indata, int frameLen, unsigned char * encoded,int sampleRate , argument
1585 encoded,&tempLen,first_cng);
1586 encoded += tempLen;
1604 cdlen = WebRtcG711_EncodeU(G711state[k], indata, frameLen, (int16_t*) encoded);
1609 cdlen = WebRtcG711_EncodeA(G711state[k], indata, frameLen, (int16_t*) encoded);
1615 cdlen = WebRtcPcm16b_EncodeW16(indata, frameLen, (int16_t*) encoded);
1620 cdlen=WebRtcG722_Encode(g722EncState[k], indata, frameLen, (int16_t*)encoded);
1626 cdlen=WebRtcIlbcfix_Encode(iLBCenc_inst[k], indata,frameLen,(int16_t*)encoded);
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexcompress_fxt1.c1323 GLuint *encoded = (GLuint *)dest; local
1358 fxt1_quantize(encoded, lines, comps);
1360 encoded += 4;
1362 encoded += destRowStride;
/external/robolectric/src/main/java/android/net/
H A DUri__FromAndroid.java201 * Gets the encoded authority part of this URI. For
221 * Gets the encoded user information from the authority.
230 * Gets the encoded host from the authority for this URI. For example,
255 * Gets the encoded path.
257 * @return the encoded path, or null if this is not a hierarchical URI
273 * Gets the encoded query component from this URI. The query comes after
278 * @return the encoded query or null if there isn't one
290 * Gets the encoded fragment part of this URI, everything after the '#'.
292 * @return the encoded fragment or null if there isn't one
312 * encoded strin
1904 volatile String encoded; field in class:Uri__FromAndroid.AbstractPart
1907 AbstractPart(String encoded, String decoded) argument
1955 Part(String encoded, String decoded) argument
1995 fromEncoded(String encoded) argument
2014 from(String encoded, String decoded) argument
2059 PathPart(String encoded, String decoded) argument
2172 fromEncoded(String encoded) argument
2191 from(String encoded, String decoded) argument
[all...]
/external/skia/third_party/etc1/
H A Detc1.cpp509 // Return the size of the encoded image data (does not include size of PKM header).
518 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
529 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
561 etc1_encode_block(block, mask, encoded);
562 memcpy(pOut, encoded, sizeof(encoded));
563 pOut += sizeof(encoded);
570 // pIn - pointer to encoded data.
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Disac.c184 * - bandwidthIndex : an index which has to be encoded in
188 * or low and it is encoded in upper-band
480 * - encoded : the encoded data vector
491 WebRtc_Word16* encoded) {
499 WebRtc_UWord8* ptrEncodedUW8 = (WebRtc_UWord8*)encoded;
724 * This function returns encoded data, with the recieved bwe-index in the
726 * the new bistream will be re-encoded with the given target rate.
743 * - encoded : The encoded dat
489 WebRtcIsac_Encode(ISACStruct* ISAC_main_inst, const WebRtc_Word16* speechIn, WebRtc_Word16* encoded) argument
751 WebRtcIsac_GetNewBitStream(ISACStruct* ISAC_main_inst, WebRtc_Word16 bweIndex, WebRtc_Word16 jitterInfo, WebRtc_Word32 rate, WebRtc_Word16* encoded, WebRtc_Word16 isRCU) argument
960 WebRtcIsac_UpdateBwEstimate(ISACStruct* ISAC_main_inst, const WebRtc_UWord16* encoded, WebRtc_Word32 packet_size, WebRtc_UWord16 rtp_seq_number, WebRtc_UWord32 send_ts, WebRtc_UWord32 arr_ts) argument
1008 Decode(ISACStruct* ISAC_main_inst, const WebRtc_UWord16* encoded, WebRtc_Word16 lenEncodedBytes, WebRtc_Word16* decoded, WebRtc_Word16* speechType, WebRtc_Word16 isRCUPayload) argument
1308 WebRtcIsac_Decode(ISACStruct* ISAC_main_inst, const WebRtc_UWord16* encoded, WebRtc_Word16 lenEncodedBytes, WebRtc_Word16* decoded, WebRtc_Word16* speechType) argument
1340 WebRtcIsac_DecodeRcu(ISACStruct* ISAC_main_inst, const WebRtc_UWord16* encoded, WebRtc_Word16 lenEncodedBytes, WebRtc_Word16* decoded, WebRtc_Word16* speechType) argument
1696 WebRtcIsac_ReadBwIndex(const WebRtc_Word16* encoded, WebRtc_Word16* bweIndex) argument
1743 WebRtcIsac_ReadFrameLen(ISACStruct* ISAC_main_inst, const WebRtc_Word16* encoded, WebRtc_Word16* frameLength) argument
2055 WebRtcIsac_GetRedPayload(ISACStruct* ISAC_main_inst, WebRtc_Word16* encoded) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_er.c901 unsigned char *encoded; local
906 encoded = base64_encode(wpabuf_head(msg), wpabuf_len(msg),
908 if (encoded == NULL)
911 encoded = NULL;
917 os_free(encoded);
941 if (encoded) {
943 arg_name, (char *) encoded, arg_name);
944 os_free(encoded);
/external/wpa_supplicant_8/src/wps/
H A Dwps_er.c901 unsigned char *encoded; local
906 encoded = base64_encode(wpabuf_head(msg), wpabuf_len(msg),
908 if (encoded == NULL)
911 encoded = NULL;
917 os_free(encoded);
941 if (encoded) {
943 arg_name, (char *) encoded, arg_name);
944 os_free(encoded);
/external/wpa_supplicant_8/wpa_supplicant/
H A Deapol_test.c423 unsigned char *encoded; local
425 encoded = base64_encode(wpabuf_head(cert), wpabuf_len(cert), NULL);
426 if (encoded == NULL)
429 "-----END CERTIFICATE-----\n\n", subject, encoded);
430 os_free(encoded);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_er.c901 unsigned char *encoded; local
906 encoded = base64_encode(wpabuf_head(msg), wpabuf_len(msg),
908 if (encoded == NULL)
911 encoded = NULL;
917 os_free(encoded);
941 if (encoded) {
943 arg_name, (char *) encoded, arg_name);
944 os_free(encoded);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.cc37 // Strings (origins, names, etc) are encoded as UTF-16BE.
130 // The prefix is followed by a type byte and the encoded IDB primary key. The
139 // The prefix is followed by a type byte and the encoded IDB primary key.
147 // The prefix is followed by a type byte and the encoded IDB primary key.
154 // The prefix is followed by a type byte, the encoded IDB index key, a
155 // "sequence" number (obsolete; var int), and the encoded IDB primary key.
165 // encoded key needs to used and "not ignored" by the comparator.
184 // As most of the IndexedDBKeys and encoded values are short, we
456 const base::char16* encoded = local
459 decoded.push_back(ntohs(*encoded
[all...]

Completed in 580 milliseconds

123456