Searched refs:code (Results 1 - 25 of 209) sorted by relevance

123456789

/frameworks/base/media/libstagefright/codecs/amrwb/src/
H A Ddec_acelp_2p_in_64.cpp22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
48 int16 code[] (o): Q9 algebraic (fixed) codebook excitation
126 int16 code[] /* (o): Q9 algebraic (fixed) codebook excitation */
131 pv_memset(code, 0, L_CODE*sizeof(*code));
139 code[i] = 512;
143 code[i] = -512;
150 code[i] = 512;
154 code[i] = -512;
H A Ddec_acelp_4p_in_64.cpp22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
55 int16 code[] (o) Q9: algebraic (fixed) codebook excitation
123 void add_pulses(int16 pos[], int16 nb_pulse, int16 track, int16 code[]);
157 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */
162 pv_memset(code, 0, L_CODE*sizeof(*code));
174 add_pulses(pos, 1, k, code);
183 add_pulses(pos, 2, k, code);
191 add_pulses(pos, 3, k, code);
197 add_pulses(pos, 2, k, code);
246 add_pulses(int16 pos[], int16 nb_pulse, int16 track, int16 code[]) argument
[all...]
H A Dphase_dispersion.cpp22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
47 int16 gain_code, (i) Q0 : gain of code
49 int16 code[], (i/o) : code vector
152 int16 gain_code, /* (i) Q0 : gain of code */
154 int16 code[], /* (i/o) : code vector */
230 if (code[i] != 0)
234 code2[i + j] = add_int16(code2[i + j], mult_int16_r(code[i], ph_imp_low[j]));
243 if (code[
151 phase_dispersion( int16 gain_code, int16 gain_pit, int16 code[], int16 mode, int16 disp_mem[], int16 ScratchMem[] ) argument
[all...]
/frameworks/base/media/libdrm/mobile2/include/util/domcore/
H A DDOMException.h26 * values in ordinary processing situations, such as out-of-bound errors when using <code>NodeList</code>.
37 short code; member in class:DOMException
39 DOMException(short code) argument
41 this->code = code;
151 return code;
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp46 * ACTS-MoMuSys partners retain full right to use the code for his/her own
47 * purpose, assign or donate the code to a third party and to inhibit third
48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard
71 * Donated to the Momusys-project as background code by
106 uint32 code; local
109 BitstreamShowBits32(stream, 24, &code);
111 while (code != 1)
115 BitstreamShowBits32(stream, 24, &code);
128 * 3/29/00 : added return code check to some functions and
129 * optimize the code
455 uint code; local
505 uint code; local
538 uint code; local
559 uint code; local
593 uint code; local
631 uint code; local
841 uint code; local
1024 uint code; local
1203 uint code; local
1263 uint code; local
1318 uint code; local
1391 uint code; local
1473 uint code, mask; local
1556 uint code, mask; local
[all...]
H A Ddec_pred_intra_dc.cpp34 uint code; local
52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size);
54 first_bit = code >> (DC_size - 1);
59 *INTRADC_delta = code ^((1 << DC_size) - 1);
64 *INTRADC_delta = code;
H A Dbitstream.h39 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code);
45 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code);
46 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code);
47 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code);
51 __inline PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code) argument
62 *code = stream->curr_word >> (32 - nbits);
69 __inline PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code) argument
78 *code = stream->curr_word >> 17;
83 __inline PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code) argument
92 *code
97 uint code; local
112 uint code; local
[all...]
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dvlc.cpp311 uint code; local
317 BitstreamShowBits(stream, 16, &code);
319 if (code >= 8192)
321 pcode = (uint8*) & (TotCofNTrail1[(code>>13)+65+2][0]);
323 else if (code >= 2048)
325 pcode = (uint8*) & (TotCofNTrail1[(code>>9)+50+2][0]);
327 else if (code >= 1024)
329 pcode = (uint8*) & (TotCofNTrail1[(code>>8)+46+2][0]);
331 else if (code >= 512)
333 pcode = (uint8*) & (TotCofNTrail1[(code>>
519 uint code; local
546 ce_LevelPrefix(AVCDecBitstream *stream, uint *code) argument
561 ce_TotalZeros(AVCDecBitstream *stream, int *code, int TotalCoeff) argument
745 ce_TotalZerosChromaDC(AVCDecBitstream *stream, int *code, int TotalCoeff) argument
769 ce_RunBefore(AVCDecBitstream *stream, int *code, int zerosLeft) argument
[all...]
H A Davcdec_bitstream.h55 This function reads next aligned word and remove the emulation prevention code
66 \param "code" "Point to the read value."
71 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code);
77 \param "code" "Point to the read value."
82 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code);
99 \param "code" "Point to the read value."
104 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code);
/frameworks/base/core/java/android/webkit/
H A DMockGeolocation.java40 public void setError(int code, String message) { argument
42 nativeSetError(code, message);
58 private static native void nativeSetError(int code, String message); argument
H A DPluginData.java28 * status code. The PluginData class is the container for all these
53 * The associated HTTP response code.
64 * @param length The HTTP response status code.
74 int code) {
78 mStatusCode = code;
124 * Returns the HTTP status code for the response.
126 * @return The HTTP statue code, e.g 200.
70 PluginData( InputStream stream, long length, Map<String, String[]> headers, int code) argument
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnectorException.java34 public NativeDaemonConnectorException(int code, String cmd, String error) argument
36 super(String.format("Cmd {%s} failed with code %d : {%s}", cmd, code, error));
37 mCode = code;
H A DINativeDaemonConnectorCallbacks.java23 boolean onEvent(int code, String raw, String[] cooked); argument
/frameworks/base/core/java/android/app/
H A DIActivityPendingResult.aidl25 boolean sendResult(int code, String data, in Bundle ex);
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dcbsearch.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
67 code[] -- array of type Word16 -- Innovative codebook, Q13
107 When the code is written for a specific target processor the
192 Word16 code[], /* o : Innovative codebook, Q13 */
219 code,
234 code,
249 code,
264 code,
307 code,
315 * - Add the pitch contribution to code[]
184 cbsearch(Word16 x[], Word16 h[], Word16 T0, Word16 pitch_sharp, Word16 gain_pit, Word16 res2[], Word16 code[], Word16 y[], Word16 **anap, enum Mode mode, Word16 subNr, Flag *pOverflow) argument
[all...]
H A Dc2_11pf.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
108 Word16 code[], /* o : Innovative codebook */
H A Dc2_9pf.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
109 Word16 code[], /* o : Innovative codebook */
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/
H A Dd_gain_c.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
114 Word16 code[], /* i : innovation codevector */
/frameworks/base/core/java/android/content/
H A DIIntentSender.aidl24 int send(int code, in Intent intent, String resolvedType,
/frameworks/base/cmds/keystore/
H A Dkeystore_cli.c48 uint8_t code; local
73 if (recv(sock, &code, 1, 0) != 1) {
77 printf("%d %s\n", code , responses[code] ? responses[code] : "Unknown");
H A Dkeystore_get.h43 uint8_t code = 'g'; local
54 if (send(sock, &code, 1, 0) == 1 && send(sock, bytes, 2, 0) == 2 &&
56 recv(sock, &code, 1, 0) == 1 && code == /* NO_ERROR */ 1 &&
/frameworks/base/obex/javax/obex/
H A DServerSession.java9 * - Redistributions of source code must retain the above copyright notice,
153 * create a <code>HeaderSet</code> object to pass to the
154 * <code>ServerRequestHandler</code> object. After the handler processes the
160 int code = ResponseCodes.OBEX_HTTP_OK;
167 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
172 code = mListener.onAbort(request, reply);
173 Log.v(TAG, "onAbort request handler return value- " + code);
174 code
256 sendResponse(int code, byte[] header) argument
677 validateResponseCode(int code) argument
[all...]
/frameworks/base/libs/ui/
H A DIOverlay.cpp53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 switch(code) {
62 return BBinder::onTransact(code, data, reply, flags);
52 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java30 public int code; field in class:SuppServiceNotification
64 + " code: " + code
/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
H A Ddec_gain.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
111 Word16 code[], /* i : Innovative vector. */

Completed in 6854 milliseconds

123456789