HomeSort by relevance Sort by last modified time
    Searched defs:enc (Results 1 - 25 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgsm/src/
toast_audio.c 59 unsigned long len, enc; /* unsigned 32 bits */ local
66 || get_u32( in, &enc ) /* skip this */
67 || get_u32( in, &enc )) {
75 switch (enc) {
82 progname, enc, inname);
  /external/webrtc/webrtc/modules/audio_coding/acm2/
codec_manager_unittest.cc 25 auto enc = rtc_make_scoped_ptr(new MockAudioEncoder); local
26 EXPECT_CALL(*enc, SampleRateHz()).WillRepeatedly(Return(8000));
27 EXPECT_CALL(*enc, NumChannels()).WillRepeatedly(Return(1));
28 EXPECT_CALL(*enc, Max10MsFramesInAPacket()).WillRepeatedly(Return(1));
29 EXPECT_CALL(*enc, Die());
30 return enc;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
reggnu.c 49 if (startpos > 0 && ONIGENC_MBC_MAXLEN(reg->enc) != 1 && startpos < size) {
54 p = onigenc_get_right_adjust_char_head(reg->enc, (UChar* )string, s);
57 p = ONIGENC_LEFT_ADJUST_CHAR_HEAD(reg->enc, (UChar* )string, s);
104 OnigEncoding enc; local
109 enc = OnigEncDefaultCharEncoding;
112 reg->options, enc, OnigDefaultSyntax, &einfo);
148 OnigEncoding enc; local
152 enc = ONIG_ENCODING_ASCII;
155 enc = ONIG_ENCODING_EUC_JP;
158 enc = ONIG_ENCODING_SJIS;
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
PKCS7ProcessableObject.java 40 ASN1Encodable enc = (ASN1Encodable)it.next(); local
42 cOut.write(enc.toASN1Primitive().getEncoded(ASN1Encoding.DER));
  /external/freetype/src/bdf/
bdfdrivr.h 46 FT_Long enc; member in struct:BDF_encoding_el_
  /external/libopus/celt/tests/
test_unit_laplace.c 56 ec_enc enc; local
62 ec_enc_init(&enc,ptr,DATA_SIZE);
73 ec_laplace_encode(&enc, &val[i],
76 ec_enc_done(&enc);
78 ec_dec_init(&dec,ec_get_buffer(&enc),ec_range_bytes(&enc));
test_unit_entropy.c 53 ec_enc enc; local
82 ec_enc_init(&enc,ptr, DATA_SIZE);
86 ec_enc_uint(&enc,i,ft);
93 nbits=ec_tell(&enc);
94 ec_enc_bits(&enc,i,ftb);
95 nbits2=ec_tell(&enc);
103 nbits=ec_tell_frac(&enc);
104 ec_enc_done(&enc);
108 fprintf(stderr,"Packed to %li bytes.\n",(long)ec_range_bytes(&enc));
141 ec_enc_init(&enc,ptr,2)
    [all...]
  /external/libvpx/libvpx/test/
level_test.cc 124 vpx_codec_ctx_t enc; local
128 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_init(&enc, codec, &cfg, 0));
135 vpx_codec_control(&enc, VP9E_SET_TARGET_LEVEL, level));
138 vpx_codec_control(&enc, VP9E_SET_TARGET_LEVEL, level));
140 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_destroy(&enc));
encode_api_test.cc 32 vpx_codec_ctx_t enc; local
38 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_enc_init(&enc, NULL, NULL, 0));
53 vpx_codec_enc_init(&enc, kCodecs[i], NULL, 0));
58 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_init(&enc, kCodecs[i], &cfg, 0));
59 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_encode(&enc, NULL, 0, 0, 0, 0));
61 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_destroy(&enc));
88 vpx_codec_ctx_t enc; local
99 vpx_codec_enc_init(&enc, vpx_codec_vp8_cx(), &cfg, 0);
101 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_encode(&enc, &img, 0, 1, 0, 0));
105 vpx_codec_destroy(&enc);
131 vpx_codec_ctx_t enc[2]; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
treecoder.c 59 const int enc = tok[t].value; local
65 const int b = (enc >> --L) & 1;
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
RsaEncryptionTest.java 118 Cipher enc = Cipher.getInstance("RSA/ECB/NOPADDING"); local
119 enc.init(Cipher.ENCRYPT_MODE, keypair.getPublic());
123 ciphertext = enc.doFinal(paddedKeys[i]);
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliEncoderChannel.java 7 package org.brotli.wrapper.enc;
BrotliOutputStream.java 7 package org.brotli.wrapper.enc;
EncoderJNI.java 7 package org.brotli.wrapper.enc;
EncoderTest.java 1 package org.brotli.wrapper.enc;
17 /** Tests for {@link org.brotli.wrapper.enc.Encoder}. */
  /external/libopus/tests/
opus_encode_regressions.c 46 OpusMSEncoder *enc; local
53 enc = opus_multistream_surround_encoder_create(16000, 1, 1, &streams,
55 opus_multistream_encoder_ctl(enc, OPUS_SET_SIGNAL(OPUS_SIGNAL_MUSIC));
56 opus_multistream_encoder_ctl(enc, OPUS_SET_VBR(0));
57 opus_multistream_encoder_ctl(enc, OPUS_SET_VBR_CONSTRAINT(0));
58 opus_multistream_encoder_ctl(enc, OPUS_SET_PREDICTION_DISABLED(1));
59 opus_multistream_encoder_ctl(enc, OPUS_SET_PHASE_INVERSION_DISABLED(0));
60 opus_multistream_encoder_ctl(enc, OPUS_SET_DTX(0));
61 opus_multistream_encoder_ctl(enc, OPUS_SET_COMPLEXITY(0));
62 opus_multistream_encoder_ctl(enc, OPUS_SET_MAX_BANDWIDTH(OPUS_BANDWIDTH_NARROWBAND))
293 OpusMSEncoder *enc; local
346 OpusMSEncoder *enc; local
396 OpusMSEncoder *enc; local
896 OpusEncoder *enc; local
959 OpusEncoder *enc; local
991 OpusEncoder *enc; local
    [all...]
  /external/skia/bench/
CmapBench.cpp 18 SkPaint::TextEncoding enc = paint.getTextEncoding(); local
19 SkASSERT(SkPaint::kGlyphID_TextEncoding != enc);
20 return (SkTypeface::Encoding)enc;
  /external/skqp/bench/
CmapBench.cpp 18 SkPaint::TextEncoding enc = paint.getTextEncoding(); local
19 SkASSERT(SkPaint::kGlyphID_TextEncoding != enc);
20 return (SkTypeface::Encoding)enc;
  /hardware/qcom/display/msm8909/libdrmutils/
drm_res_mgr.cpp 62 drmModeEncoder *enc = drmModeGetEncoder(dev_fd, conn->encoders[i]); local
63 if (enc && enc->encoder_type == DRM_MODE_ENCODER_DSI) {
64 *encoder = enc;
65 DRM_LOGI("Found encoder %d", enc->encoder_id);
72 static bool GetCrtc(int dev_fd, drmModeRes *res, drmModeEncoder *enc, drmModeCrtc **crtc) {
74 if (enc->possible_crtcs & (1 << i)) {
127 drmModeEncoder *enc = nullptr; local
128 if (!GetEncoder(dev_fd, conn, &enc)) {
135 if (!GetCrtc(dev_fd, res, enc, &crtc))
    [all...]
  /hardware/qcom/display/msm8909w_3100/libdrmutils/
drm_res_mgr.cpp 62 drmModeEncoder *enc = drmModeGetEncoder(dev_fd, conn->encoders[i]); local
63 if (enc && enc->encoder_type == DRM_MODE_ENCODER_DSI) {
64 *encoder = enc;
65 DRM_LOGI("Found encoder %d", enc->encoder_id);
72 static bool GetCrtc(int dev_fd, drmModeRes *res, drmModeEncoder *enc, drmModeCrtc **crtc) {
74 if (enc->possible_crtcs & (1 << i)) {
127 drmModeEncoder *enc = nullptr; local
128 if (!GetEncoder(dev_fd, conn, &enc)) {
135 if (!GetCrtc(dev_fd, res, enc, &crtc))
    [all...]
  /hardware/qcom/display/msm8998/libdrmutils/
drm_res_mgr.cpp 62 drmModeEncoder *enc = drmModeGetEncoder(dev_fd, conn->encoders[i]); local
63 if (enc && enc->encoder_type == DRM_MODE_ENCODER_DSI) {
64 *encoder = enc;
65 DRM_LOGI("Found encoder %d", enc->encoder_id);
72 static bool GetCrtc(int dev_fd, drmModeRes *res, drmModeEncoder *enc, drmModeCrtc **crtc) {
74 if (enc->possible_crtcs & (1 << i)) {
127 drmModeEncoder *enc = nullptr; local
128 if (!GetEncoder(dev_fd, conn, &enc)) {
135 if (!GetCrtc(dev_fd, res, enc, &crtc))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 109 private byte[] enc; field in class:MyExemptionMechanismSpi.tmpKey
110 public tmpKey(String alg, byte[] enc) {
112 this.enc = enc;
121 return enc;
126 private byte[] enc; field in class:MyExemptionMechanismSpi.tmp1Key
127 public tmp1Key(String alg, byte[] enc) {
128 this.enc = enc;
137 return enc;
    [all...]
  /external/boringssl/src/crypto/asn1/
tasn_utl.c 133 ASN1_ENCODING *enc; local
134 enc = asn1_get_enc_ptr(pval, it);
135 if (enc) {
136 enc->enc = NULL;
137 enc->len = 0;
138 enc->alias_only = 0;
139 enc->alias_only_on_next_parse = 0;
140 enc->modified = 1;
145 ASN1_ENCODING *enc; local
161 ASN1_ENCODING *enc; local
192 ASN1_ENCODING *enc; local
    [all...]
  /external/libopus/celt/
opus_custom_demo.c 48 OpusCustomEncoder *enc; local
104 enc = opus_custom_encoder_create(mode, channels, &err);
125 opus_custom_encoder_ctl(enc,OPUS_SET_COMPLEXITY(complexity));
137 len = opus_custom_encode(enc, in, frame_size, data, bytes_per_packet);
190 opus_custom_encoder_destroy(enc);
  /external/libvterm/src/
encoding.c 20 static void init_utf8(VTermEncoding *enc, void *data_)
28 static void decode_utf8(VTermEncoding *enc, void *data_,
154 static void decode_usascii(VTermEncoding *enc, void *data,
175 const VTermEncoding enc; member in struct:StaticTableEncoding
179 static void decode_table(VTermEncoding *enc, void *data,
183 struct StaticTableEncoding *table = (struct StaticTableEncoding *)enc;
205 VTermEncoding *enc; member in struct:__anon26327
220 return encodings[i].enc;

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 91011>>