HomeSort by relevance Sort by last modified time
    Searched full:bitstr (Results 1 - 14 of 14) sorted by null

  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.h 49 int WebRtcIsac_DecodeSpec(Bitstr* streamdata, WebRtc_Word16 AvgPitchGain_Q12,
77 Bitstr* streamdata);
80 int WebRtcIsac_DecodeLpcCoef(Bitstr* streamdata, double* LPCCoef);
81 int WebRtcIsac_DecodeLpcCoefUB(Bitstr* streamdata, double* lpcVecs,
85 int WebRtcIsac_DecodeLpc(Bitstr* streamdata, double* LPCCoef_lo,
90 Bitstr* streamdata, ISAC_SaveEncData_t* encData);
93 Bitstr* streamdata,
129 WebRtc_Word16 WebRtcIsac_EncodeLpcUB(double* lpcCoeff, Bitstr* streamdata,
162 WebRtc_Word16 WebRtcIsac_DecodeInterpolLpcUb(Bitstr* streamdata,
167 int WebRtcIsac_DecodeRc(Bitstr* streamdata, WebRtc_Word16* RCQ15)
    [all...]
arith_routines.h 25 Bitstr *streamdata, /* in-/output struct containing bitstream */
32 int WebRtcIsac_EncTerminate(Bitstr *streamdata); /* in-/output struct containing bitstream */
37 Bitstr *streamdata, /* in-/output struct containing bitstream */
44 Bitstr *streamdata, /* in-/output struct containing bitstream */
51 Bitstr *streamdata, /* in-/output struct containing bitstream */
58 Bitstr *streamdata, /* in-/output struct containing bitstream */
codec.h 25 void WebRtcIsac_ResetBitstream(Bitstr* bit_stream);
27 int WebRtcIsac_EstimateBandwidth(BwEstimatorstr* bwest_str, Bitstr* streamdata,
46 Bitstr* ISACBitStr_obj, int BWnumber,
50 const ISACUBSaveEncDataStruct* ISACSavedEnc_obj, Bitstr* bitStream,
54 const ISACUBSaveEncDataStruct* ISACSavedEncObj, Bitstr* bitStreamObj,
structs.h 33 } Bitstr;
303 Bitstr bitStreamObj;
313 Bitstr bitstr_obj;
358 Bitstr bitstr_obj;
383 Bitstr bitstr_obj;
393 Bitstr bitstr_obj;
arith_routines.c 19 int WebRtcIsac_EncTerminate(Bitstr *streamdata) /* in-/output struct containing bitstream */
decode_bwe.c 20 Bitstr* streamdata,
entropy_coding.c 273 int WebRtcIsac_DecodeSpec(Bitstr* streamdata, WebRtc_Word16 AvgPitchGain_Q12,
396 Bitstr* streamdata) {
780 int WebRtcIsac_DecodeLpc(Bitstr* streamdata, double* LPCCoef_lo,
794 WebRtc_Word16 WebRtcIsac_DecodeInterpolLpcUb(Bitstr* streamdata,
852 int WebRtcIsac_DecodeLpcCoef(Bitstr* streamdata, double* LPCCoef) {
1002 void WebRtcIsac_EncodeLar(double* LPCCoef, Bitstr* streamdata,
    [all...]
arith_routines_hist.c 18 void WebRtcIsac_EncHistMulti(Bitstr *streamdata, /* in-/output struct containing bitstream */
86 Bitstr *streamdata, /* in-/output struct containing bitstream */
194 Bitstr *streamdata, /* in-/output struct containing bitstream */
arith_routines_logist.c 81 Bitstr *streamdata, /* in-/output struct containing bitstream */
173 Bitstr *streamdata, /* in-/output struct containing bitstream */
encode.c 174 void WebRtcIsac_ResetBitstream(Bitstr* bit_stream) {
628 &ISACencUB_obj->bitstr_obj, sizeof(Bitstr));
803 sizeof(Bitstr));
    [all...]
isac.c 757 Bitstr iSACBitStreamInst; /* Local struct for bitstream handling */
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn1_gen.c 116 static int bitstr_cb(const char *elem, int len, void *bitstr);
117 static int asn1_cb(const char *elem, int len, void *bitstr);
277 static int asn1_cb(const char *elem, int len, void *bitstr)
279 tag_exp_arg *arg = bitstr;
571 ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING),
833 static int bitstr_cb(const char *elem, int len, void *bitstr)
847 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1))
  /external/openssl/crypto/asn1/
asn1_gen.c 116 static int bitstr_cb(const char *elem, int len, void *bitstr);
117 static int asn1_cb(const char *elem, int len, void *bitstr);
277 static int asn1_cb(const char *elem, int len, void *bitstr)
279 tag_exp_arg *arg = bitstr;
571 ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING),
833 static int bitstr_cb(const char *elem, int len, void *bitstr)
847 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1))
  /libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp 841 jbooleanArray ASN1BitStringToBooleanArray(JNIEnv* env, ASN1_BIT_STRING* bitStr) {
842 int size = bitStr->length * 8;
843 if (bitStr->flags & ASN1_STRING_FLAG_BITS_LEFT) {
844 size -= bitStr->flags & 0x07;
854 bitsArray[i] = ASN1_BIT_STRING_get_bit(bitStr, i);
    [all...]

Completed in 1300 milliseconds