/external/aac/libMpegTPDec/src/ |
D | tpdec_asc.cpp | 1225 CSAudioSpecificConfig *asc, in GaSpecificConfig_Parse() argument 1238 if (asc->m_channelConfiguration == 0) { in GaSpecificConfig_Parse() 1239 CProgramConfig_Read(&asc->m_progrConfigElement, bs, ascStartAnchor); in GaSpecificConfig_Parse() 1242 if ((asc->m_aot == AOT_AAC_SCAL) || (asc->m_aot == AOT_ER_AAC_SCAL)) { in GaSpecificConfig_Parse() 1247 if (asc->m_aot == AOT_ER_BSAC) { in GaSpecificConfig_Parse() 1252 if ((asc->m_aot == AOT_ER_AAC_LC) || (asc->m_aot == AOT_ER_AAC_LTP) || in GaSpecificConfig_Parse() 1253 (asc->m_aot == AOT_ER_AAC_SCAL) || (asc->m_aot == AOT_ER_AAC_LD)) { in GaSpecificConfig_Parse() 1254 asc->m_vcb11Flag = FDKreadBits(bs, 1); /* aacSectionDataResilienceFlag */ in GaSpecificConfig_Parse() 1255 asc->m_rvlcFlag = in GaSpecificConfig_Parse() 1257 asc->m_hcrFlag = FDKreadBits(bs, 1); /* aacSpectralDataResilienceFlag */ in GaSpecificConfig_Parse() [all …]
|
D | tpdec_lib.cpp | 146 CSAudioSpecificConfig asc[(1 * 1) + 1]; /* Audio specific config from the last member 300 hTp->asc, &fConfigFound, in transportDec_OutOfBandConfig() 308 err = AudioSpecificConfig_Parse(&hTp->asc[(1 * 1)], hBs, 1, in transportDec_OutOfBandConfig() 314 hTp->asc[layer] = hTp->asc[(1 * 1)]; in transportDec_OutOfBandConfig() 316 hTp->callbacks.cbUpdateConfigData, &hTp->asc[layer], in transportDec_OutOfBandConfig() 317 hTp->asc[layer].configMode, &hTp->asc[layer].AacConfigChanged); in transportDec_OutOfBandConfig() 325 err = DrmRawSdcAudioConfig_Parse(&hTp->asc[layer], hBs, &hTp->callbacks, in transportDec_OutOfBandConfig() 331 hTp->callbacks.cbUpdateConfigData, &hTp->asc[layer], in transportDec_OutOfBandConfig() 332 hTp->asc[layer].configMode, &hTp->asc[layer].AacConfigChanged); in transportDec_OutOfBandConfig() 341 if ((i == 0) && (hTp->asc[layer].AacConfigChanged || in transportDec_OutOfBandConfig() [all …]
|
/external/aac/libMpegTPEnc/src/ |
D | tpenc_asc.cpp | 694 static int transportEnc_writeGASpecificConfig(HANDLE_FDK_BITSTREAM asc, in transportEnc_writeGASpecificConfig() argument 701 FDKwriteBits(asc, in transportEnc_writeGASpecificConfig() 705 FDKwriteBits(asc, 0, in transportEnc_writeGASpecificConfig() 708 FDKwriteBits(asc, extFlg, in transportEnc_writeGASpecificConfig() 713 transportEnc_writePCE(asc, config->channelMode, config->samplingRate, 0, 1, in transportEnc_writeGASpecificConfig() 719 FDKwriteBits(asc, 0, 3); /* layerNr */ in transportEnc_writeGASpecificConfig() 723 FDKwriteBits(asc, config->BSACnumOfSubFrame, 5); /* numOfSubFrame */ in transportEnc_writeGASpecificConfig() 724 FDKwriteBits(asc, config->BSAClayerLength, 11); /* layer_length */ in transportEnc_writeGASpecificConfig() 728 FDKwriteBits(asc, (config->flags & CC_VCB11) ? 1 : 0, in transportEnc_writeGASpecificConfig() 730 FDKwriteBits(asc, (config->flags & CC_RVLC) ? 1 : 0, in transportEnc_writeGASpecificConfig() [all …]
|
/external/aac/libAACdec/src/ |
D | aacdecoder.cpp | 1477 CAacDecoder_Init(HANDLE_AACDECODER self, const CSAudioSpecificConfig *asc, in CAacDecoder_Init() argument 1496 switch (asc->m_aot) { in CAacDecoder_Init() 1501 if (asc->m_sc.m_gaSpecificConfig.m_layer > 0) { in CAacDecoder_Init() 1524 if (CProgramConfig_IsValid(&self->pce) && (asc->m_channelConfiguration > 0)) { in CAacDecoder_Init() 1531 CProgramConfig_GetDefault(tmpPce, asc->m_channelConfiguration); in CAacDecoder_Init() 1544 switch (asc->m_channelConfiguration) { in CAacDecoder_Init() 1546 switch (asc->m_aot) { in CAacDecoder_Init() 1549 ascChannels = asc->m_sc.m_usacConfig.m_nUsacChannels; in CAacDecoder_Init() 1553 if (CProgramConfig_IsValid(&asc->m_progrConfigElement)) { in CAacDecoder_Init() 1554 ascChannels = asc->m_progrConfigElement.NumChannels; in CAacDecoder_Init() [all …]
|
/external/libxaac/decoder/ |
D | ixheaacd_latmdemux.c | 221 layer_info->asc.aot = aac_state_struct->audio_object_type; in ixheaacd_latm_stream_mux_config() 222 layer_info->asc.channel_config = aac_state_struct->ch_config; in ixheaacd_latm_stream_mux_config() 223 layer_info->asc.samples_per_frame = aac_state_struct->frame_len_flag; in ixheaacd_latm_stream_mux_config() 224 layer_info->asc.sampling_freq = aac_state_struct->sampling_rate; in ixheaacd_latm_stream_mux_config() 225 layer_info->asc.samples_per_frame = aac_state_struct->frame_length; in ixheaacd_latm_stream_mux_config() 231 layer_info->asc = latm_element->layer_info[prog][lay - 1].asc; in ixheaacd_latm_stream_mux_config() 248 if ((lay > 0) && layer_info->asc.aot == AOT_AAC_SCAL) { in ixheaacd_latm_stream_mux_config()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 429 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); 430 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); 432 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); 434 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 437 AddStmtChoice asc); 440 AddStmtChoice asc); 442 CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); 443 CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); 444 CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); 447 AddStmtChoice asc); [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | loadstore-alignment.ll | 21 %t.asc = addrspacecast <2 x i64>* %t to <2 x i64> addrspace(1)* 22 %tmp1 = load <2 x i64>, <2 x i64> addrspace(1)* %t.asc, align 1 30 %t.asc = addrspacecast <2 x i64>* %t to <2 x i64> addrspace(2)* 31 %tmp1 = load <2 x i64>, <2 x i64> addrspace(2)* %t.asc, align 1 39 %t.asc = addrspacecast <2 x i64> addrspace(2)* %t to <2 x i64> addrspace(1)* 40 %tmp1 = load <2 x i64>, <2 x i64> addrspace(1)* %t.asc, align 1
|
/external/u-boot/drivers/misc/ |
D | altera_sysid.c | 29 char asc[32]; in display_sysid() local 43 asctime_r(&t, asc); in display_sysid() 44 printf("SYSID: %08x, %s", sysid[0], asc); in display_sysid()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InferAddressSpaces/AMDGPU/ |
D | infer-getelementptr.ll | 13 %asc = addrspacecast double* %gep0 to double addrspace(3)* 14 store double 1.000000e+00, double addrspace(3)* %asc, align 8 23 %asc = addrspacecast double* %gep0 to double addrspace(3)* 24 store double 1.0, double addrspace(3)* %asc, align 8 35 %asc = addrspacecast double* %gep1 to double addrspace(3)* 36 store double 1.0, double addrspace(3)* %asc, align 8
|
/external/python/dateutil/ |
D | RELEASING | 82 gpg --armor --output <fname>.asc --detach-sig <fname> 86 for f in dist/*; do gpg --armor --output $f.asc --detach-sig $f; done 88 Save these .asc files for when uploading to pypi. Before uploading them, verify 91 gpg --verify <fname>.asc <fname> 95 for f in $(find ./dist -type f | grep -v '.asc$'); do gpg --verify $f.asc $f; done
|
/external/icu/icu4c/source/i18n/ |
D | astro.h | 156 Equatorial(double asc = 0, double dec = 0) 157 : ascension(asc), declination(dec) { } in ascension() argument 165 void set(double asc, double dec) { in set() argument 166 ascension = asc; in set()
|
/external/f2fs-tools/tools/sg_write_buffer/ |
D | sg_pt_linux_nvme.c | 173 build_sense_buffer(bool desc, uint8_t *buf, uint8_t skey, uint8_t asc, in build_sense_buffer() argument 179 buf[2] = asc; in build_sense_buffer() 186 buf[12] = asc; in build_sense_buffer() 193 mk_sense_asc_ascq(struct sg_pt_linux_scsi * ptp, int sk, int asc, int ascq, in mk_sense_asc_ascq() argument 210 build_sense_buffer(dsense, sbp, sk, asc, ascq); in mk_sense_asc_ascq() 213 asc, ascq); in mk_sense_asc_ascq() 222 uint8_t sstatus, sk, asc, ascq; in mk_sense_from_nvme_status() local 225 ok = sg_nvme_status2scsi(ptp->nvme_status, &sstatus, &sk, &asc, &ascq); in mk_sense_from_nvme_status() 229 asc = 0xb; in mk_sense_from_nvme_status() 241 build_sense_buffer(dsense, sbp, sk, asc, ascq); in mk_sense_from_nvme_status() [all …]
|
/external/catch2/docs/ |
D | release-process.md | 66 $ gpg2 --armor --output catch.hpp.asc --detach-sig catch.hpp 67 $ gpg2 --armor --output catch_reporter_automake.hpp.asc --detach-sig catch_reporter_automake.hpp 68 $ gpg2 --armor --output catch_reporter_teamcity.hpp.asc --detach-sig catch_reporter_teamcity.hpp 69 $ gpg2 --armor --output catch_reporter_tap.hpp.asc --detach-sig catch_reporter_tap.hpp
|
/external/f2fs-tools/tools/sg_write_buffer/include/ |
D | sg_lib_data.h | 63 unsigned char asc; /* additional sense code */ member 69 unsigned char asc; /* additional sense code (ASC) */ member
|
D | sg_lib.h | 169 unsigned char asc; member 201 char * sg_get_asc_ascq_str(int asc, int ascq, int buff_len, char * buff);
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_45.txt | 21 Content-Type: application/pgp-signature; name="signature.asc" 23 Content-Disposition: attachment; filename="signature.asc"
|
/external/python/cpython2/Lib/email/test/data/ |
D | msg_45.txt | 21 Content-Type: application/pgp-signature; name="signature.asc" 23 Content-Disposition: attachment; filename="signature.asc"
|
/external/error_prone/ |
D | update.sh | 42 wget ${JAR_URL}.asc -O ${DIR}/$(basename ${JAR_URL}).asc
|
/external/u-boot/drivers/block/ |
D | ide.c | 337 unsigned char res, key, asc, ascq; in atapi_issue_autoreq() local 360 asc = (sense_data[12]); in atapi_issue_autoreq() 365 sense_data[0], key, asc, ascq); in atapi_issue_autoreq() 370 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */ in atapi_issue_autoreq() 378 if ((asc == 0x4) && (ascq == 0x1)) { in atapi_issue_autoreq() 388 if (asc == 0x3a) { in atapi_issue_autoreq() 393 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc, in atapi_issue_autoreq() 396 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq); in atapi_issue_autoreq()
|
/external/strace/debian/ |
D | watch | 2 opts=pgpsigurlmangle=s/$/.asc/,uversionmangle=s/-/./g http://sf.net/strace/strace-([[:digit:].-]*)\…
|
/external/libusb/ |
D | TODO | 2 https://github.com/libusb/libusb/milestones?direction=asc&sort=due_date&state=open
|
/external/e2fsprogs/debian/ |
D | watch | 2 opts="pgpsigurlmangle=s%$%.asc%" \
|
/external/perfetto/test/trace_processor/ |
D | android_log_msgs.sql | 3 create view v2 as select tag, count(*) from android_logs group by tag order by 2 asc limit 5;
|
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
D | sg_err.c | 988 void sg_print_asc_ascq(unsigned char asc, unsigned char ascq) in sg_print_asc_ascq() argument 998 if (additional[k].code1 == asc && additional[k].code2 == ascq) { in sg_print_asc_ascq() 1026 if ((additional2[k].code1 == asc) && in sg_print_asc_ascq() 1036 fprintf(OUTP, "ASC=%2x ASCQ=%2x\n", asc, ascq); in sg_print_asc_ascq() 1322 unsigned char asc; in sg_err_category_new() local 1326 asc = sense_buffer[2]; in sg_err_category_new() 1329 asc = (sb_len > 12) ? sense_buffer[12] : 0; in sg_err_category_new() 1335 if (0x28 == asc) in sg_err_category_new() 1337 if (0x29 == asc) in sg_err_category_new()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/debian8/ |
D | Dockerfile | 33 wget "https://cmake.org/files/v3.7/cmake-3.7.2-SHA-256.txt.asc" && \ 35 gpg --verify cmake-3.7.2-SHA-256.txt.asc cmake-3.7.2-SHA-256.txt && \
|