/external/webrtc/src/modules/audio_processing/ns/ |
D | ns_core.c | 22 void WebRtcNs_set_feature_extraction_parameters(NSinst_t* inst) { in WebRtcNs_set_feature_extraction_parameters() argument 24 inst->featureExtractionParams.binSizeLrt = (float)0.1; in WebRtcNs_set_feature_extraction_parameters() 25 inst->featureExtractionParams.binSizeSpecFlat = (float)0.05; in WebRtcNs_set_feature_extraction_parameters() 26 inst->featureExtractionParams.binSizeSpecDiff = (float)0.1; in WebRtcNs_set_feature_extraction_parameters() 29 inst->featureExtractionParams.rangeAvgHistLrt = (float)1.0; in WebRtcNs_set_feature_extraction_parameters() 33 inst->featureExtractionParams.factor1ModelPars = (float)1.20; //for lrt and spectral diff in WebRtcNs_set_feature_extraction_parameters() 34 inst->featureExtractionParams.factor2ModelPars = (float)0.9; //for spectral_flatness: in WebRtcNs_set_feature_extraction_parameters() 38 inst->featureExtractionParams.thresPosSpecFlat = (float)0.6; in WebRtcNs_set_feature_extraction_parameters() 41 inst->featureExtractionParams.limitPeakSpacingSpecFlat = in WebRtcNs_set_feature_extraction_parameters() 42 2 * inst->featureExtractionParams.binSizeSpecFlat; in WebRtcNs_set_feature_extraction_parameters() [all …]
|
D | nsx_core.c | 439 static void UpdateNoiseEstimate(NsxInst_t* inst, int offset) { in UpdateNoiseEstimate() argument 447 tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset, in UpdateNoiseEstimate() 448 inst->magnLen); in UpdateNoiseEstimate() 450 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in UpdateNoiseEstimate() 452 for (i = 0; i < inst->magnLen; i++) { in UpdateNoiseEstimate() 456 inst->noiseEstLogQuantile[offset + i]); in UpdateNoiseEstimate() 460 tmp16 += (WebRtc_Word16) inst->qNoise; //shift to get result in Q(qNoise) in UpdateNoiseEstimate() 466 inst->noiseEstQuantile[i] = WebRtcSpl_SatW32ToW16(tmp32no1); in UpdateNoiseEstimate() 471 static void NoiseEstimationC(NsxInst_t* inst, in NoiseEstimationC() argument 483 tabind = inst->stages - inst->normData; in NoiseEstimationC() [all …]
|
D | nsx_core_neon.c | 17 static void UpdateNoiseEstimateNeon(NsxInst_t* inst, int offset) { in UpdateNoiseEstimateNeon() argument 27 int16_t tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset, in UpdateNoiseEstimateNeon() 28 inst->magnLen); in UpdateNoiseEstimateNeon() 31 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2Const, in UpdateNoiseEstimateNeon() 35 int32x4_t qNoise32x4 = vdupq_n_s32(inst->qNoise); in UpdateNoiseEstimateNeon() 37 for (ptr_noiseEstLogQuantile = &inst->noiseEstLogQuantile[offset], in UpdateNoiseEstimateNeon() 38 ptr_noiseEstQuantile = &inst->noiseEstQuantile[0]; in UpdateNoiseEstimateNeon() 39 ptr_noiseEstQuantile < &inst->noiseEstQuantile[inst->magnLen - 3]; in UpdateNoiseEstimateNeon() 85 tmp16 += (int16_t) inst->qNoise; //shift to get result in Q(qNoise) in UpdateNoiseEstimateNeon() 95 static void NoiseEstimationNeon(NsxInst_t* inst, in NoiseEstimationNeon() argument [all …]
|
D | nsx_core.h | 124 WebRtc_Word32 WebRtcNsx_InitCore(NsxInst_t* inst, WebRtc_UWord32 fs); 141 int WebRtcNsx_set_policy_core(NsxInst_t* inst, int mode); 161 int WebRtcNsx_ProcessCore(NsxInst_t* inst, 172 typedef void (*NoiseEstimation)(NsxInst_t* inst, 179 typedef void (*PrepareSpectrum)(NsxInst_t* inst, 185 typedef void (*SynthesisUpdate)(NsxInst_t* inst, 191 typedef void (*AnalysisUpdate)(NsxInst_t* inst, 197 typedef void (*Denormalize)(NsxInst_t* inst, 204 typedef void (*CreateComplexBuffer)(NsxInst_t* inst,
|
/external/webrtc/src/common_audio/vad/ |
D | vad_core.c | 66 int WebRtcVad_InitCore(VadInstT *inst, short mode) in WebRtcVad_InitCore() argument 71 inst->vad = 1; in WebRtcVad_InitCore() 72 inst->frame_counter = 0; in WebRtcVad_InitCore() 73 inst->over_hang = 0; in WebRtcVad_InitCore() 74 inst->num_of_speech = 0; in WebRtcVad_InitCore() 77 inst->downsampling_filter_states[0] = 0; in WebRtcVad_InitCore() 78 inst->downsampling_filter_states[1] = 0; in WebRtcVad_InitCore() 79 inst->downsampling_filter_states[2] = 0; in WebRtcVad_InitCore() 80 inst->downsampling_filter_states[3] = 0; in WebRtcVad_InitCore() 85 inst->noise_means[i] = kNoiseDataMeans[i]; in WebRtcVad_InitCore() [all …]
|
D | vad_core.h | 68 int WebRtcVad_InitCore(VadInstT* inst, short mode); 87 int WebRtcVad_set_mode_core(VadInstT* inst, short mode); 108 WebRtc_Word16 WebRtcVad_CalcVad32khz(VadInstT* inst, WebRtc_Word16* speech_frame, 110 WebRtc_Word16 WebRtcVad_CalcVad16khz(VadInstT* inst, WebRtc_Word16* speech_frame, 112 WebRtc_Word16 WebRtcVad_CalcVad8khz(VadInstT* inst, WebRtc_Word16* speech_frame, 132 WebRtc_Word16 WebRtcVad_GmmProbability(VadInstT* inst, WebRtc_Word16* feature_vector,
|
D | vad_filterbank.c | 128 int16_t WebRtcVad_get_features(VadInstT* inst, in WebRtcVad_get_features() argument 147 WebRtcVad_SplitFilter(in_ptr, length, &inst->upper_state[frequency_band], in WebRtcVad_get_features() 148 &inst->lower_state[frequency_band], hp_out_ptr, in WebRtcVad_get_features() 158 WebRtcVad_SplitFilter(in_ptr, length, &inst->upper_state[frequency_band], in WebRtcVad_get_features() 159 &inst->lower_state[frequency_band], hp_out_ptr, in WebRtcVad_get_features() 177 WebRtcVad_SplitFilter(in_ptr, length, &inst->upper_state[frequency_band], in WebRtcVad_get_features() 178 &inst->lower_state[frequency_band], hp_out_ptr, in WebRtcVad_get_features() 192 WebRtcVad_SplitFilter(in_ptr, length, &inst->upper_state[frequency_band], in WebRtcVad_get_features() 193 &inst->lower_state[frequency_band], hp_out_ptr, in WebRtcVad_get_features() 207 WebRtcVad_SplitFilter(in_ptr, length, &inst->upper_state[frequency_band], in WebRtcVad_get_features() [all …]
|
/external/libxslt/libxslt/ |
D | preproc.c | 71 xsltCheckTopLevelElement(xsltStylesheetPtr style, xmlNodePtr inst, int err) { in xsltCheckTopLevelElement() argument 73 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL)) in xsltCheckTopLevelElement() 76 parent = inst->parent; in xsltCheckTopLevelElement() 79 xsltTransformError(NULL, style, inst, in xsltCheckTopLevelElement() 86 ((parent->ns != inst->ns) && in xsltCheckTopLevelElement() 87 (!xmlStrEqual(parent->ns->href, inst->ns->href))) || in xsltCheckTopLevelElement() 91 xsltTransformError(NULL, style, inst, in xsltCheckTopLevelElement() 93 inst->name); in xsltCheckTopLevelElement() 109 xsltCheckInstructionElement(xsltStylesheetPtr style, xmlNodePtr inst) { in xsltCheckInstructionElement() argument 113 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL) || in xsltCheckInstructionElement() [all …]
|
D | transform.h | 93 xmlNodePtr inst, 98 xmlNodePtr inst, 103 xmlNodePtr inst, 108 xmlNodePtr inst, 113 xmlNodePtr inst, 118 xmlNodePtr inst, 123 xmlNodePtr inst, 128 xmlNodePtr inst, 133 xmlNodePtr inst, 138 xmlNodePtr inst, [all …]
|
D | attributes.c | 642 xmlNodePtr inst, in xsltAttributeInternal() argument 659 if ((ctxt == NULL) || (contextNode == NULL) || (inst == NULL)) in xsltAttributeInternal() 682 xsltTransformError(ctxt, NULL, inst, in xsltAttributeInternal() 720 xsltTransformError(ctxt, NULL, inst, in xsltAttributeInternal() 734 xslHandleDebugger(inst, contextNode, NULL, ctxt); in xsltAttributeInternal() 739 prop = xsltEvalAttrValueTemplate(ctxt, inst, in xsltAttributeInternal() 742 xsltTransformError(ctxt, NULL, inst, in xsltAttributeInternal() 747 xsltTransformError(ctxt, NULL, inst, in xsltAttributeInternal() 811 tmpNsName = xsltEvalAttrValueTemplate(ctxt, inst, in xsltAttributeInternal() 833 ns = xmlSearchNs(inst->doc, inst, prefix); in xsltAttributeInternal() [all …]
|
D | transform.c | 546 cur->inst = NULL; in xsltNewTransformContext() 1680 xmlNodePtr inst) { in xsltApplyFallbacks() argument 1685 if ((ctxt == NULL) || (node == NULL) || (inst == NULL) || in xsltApplyFallbacks() 1686 (inst->children == NULL)) in xsltApplyFallbacks() 1689 child = inst->children; in xsltApplyFallbacks() 2079 } else if (ctxt->inst) { in xsltDebuggerStartSequenceConstructor() 2080 xslHandleDebugger(ctxt->inst, contextNode, templ, ctxt); in xsltDebuggerStartSequenceConstructor() 2081 debugedNode = ctxt->inst; in xsltDebuggerStartSequenceConstructor() 2221 oldInst = oldCurInst = ctxt->inst; in xsltApplySequenceConstructor() 2233 ctxt->inst = cur; in xsltApplySequenceConstructor() [all …]
|
D | templates.c | 69 oldInst = ctxt->inst; in xsltEvalXPathPredicate() 95 ctxt->inst = oldInst; in xsltEvalXPathPredicate() 126 oldInst = ctxt->inst; in xsltEvalXPathStringNs() 156 ctxt->inst = oldInst; in xsltEvalXPathStringNs() 196 xmlNodePtr inst) in xsltEvalTemplateString() argument 201 if ((ctxt == NULL) || (contextNode == NULL) || (inst == NULL)) in xsltEvalTemplateString() 204 if (inst->children == NULL) in xsltEvalTemplateString() 225 xsltApplyOneTemplate(ctxt, contextNode, inst->children, NULL, NULL); in xsltEvalTemplateString() 257 const xmlChar *str, xmlNodePtr inst) in xsltAttrTemplateValueProcessNode() argument 284 xsltTransformError(ctxt, NULL, inst, in xsltAttrTemplateValueProcessNode() [all …]
|
/external/llvm/lib/MC/MCDisassembler/ |
D | EDMain.cpp | 75 EDInst *inst = ((EDDisassembler*)disassembler)->createInst(byteReader, in EDCreateInsts() local 78 if (!inst) in EDCreateInsts() 81 insts[index] = inst; in EDCreateInsts() 82 address += inst->byteSize(); in EDCreateInsts() 88 void EDReleaseInst(EDInstRef inst) { in EDReleaseInst() argument 89 delete ((EDInst*)inst); in EDReleaseInst() 92 int EDInstByteSize(EDInstRef inst) { in EDInstByteSize() argument 93 return ((EDInst*)inst)->byteSize(); in EDInstByteSize() 97 EDInstRef inst) { in EDGetInstString() argument 98 return ((EDInst*)inst)->getString(*buf); in EDGetInstString() [all …]
|
/external/e2fsprogs/misc/ |
D | fsck.c | 419 struct fsck_instance *inst; in progress_active() local 421 for (inst = instance_list; inst; inst = inst->next) { in progress_active() 422 if (inst->flags & FLAG_DONE) in progress_active() 424 if (inst->flags & FLAG_PROGRESS) in progress_active() 439 struct fsck_instance *inst, *p; in execute() local 442 inst = malloc(sizeof(struct fsck_instance)); in execute() 443 if (!inst) in execute() 445 memset(inst, 0, sizeof(struct fsck_instance)); in execute() 464 inst->flags |= FLAG_PROGRESS; in execute() 478 free(inst); in execute() [all …]
|
/external/llvm/lib/MC/ |
D | MCWin64EH.cpp | 66 MCWin64EHInstruction &inst) { in EmitUnwindCode() argument 69 b2 = (inst.getOperation() & 0x0F); in EmitUnwindCode() 70 switch (inst.getOperation()) { in EmitUnwindCode() 72 EmitAbsDifference(streamer, inst.getLabel(), begin); in EmitUnwindCode() 73 b2 |= (inst.getRegister() & 0x0F) << 4; in EmitUnwindCode() 77 EmitAbsDifference(streamer, inst.getLabel(), begin); in EmitUnwindCode() 78 if (inst.getSize() > 512*1024-8) { in EmitUnwindCode() 81 w = inst.getSize() & 0xFFF8; in EmitUnwindCode() 83 w = inst.getSize() >> 16; in EmitUnwindCode() 86 w = inst.getSize() >> 3; in EmitUnwindCode() [all …]
|
/external/chromium/sdch/open-vcdiff/src/ |
D | instruction_map.h | 67 OpcodeOrNone LookupFirstOpcode(unsigned char inst, in LookupFirstOpcode() argument 70 return first_instruction_map_.Lookup(inst, size, mode); in LookupFirstOpcode() 83 unsigned char inst, in LookupSecondOpcode() argument 86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode); in LookupSecondOpcode() 97 void Add(unsigned char inst, in Add() argument 101 OpcodeOrNone* opcode_slot = &first_opcodes_[inst + mode][size]; in Add() 109 OpcodeOrNone Lookup(unsigned char inst, in Lookup() argument 112 int inst_mode = (inst == VCD_COPY) ? (inst + mode) : inst; in Lookup() 163 unsigned char inst, 170 unsigned char inst,
|
/external/llvm/include/llvm-c/ |
D | EnhancedDisassembly.h | 185 void EDReleaseInst(EDInstRef inst); 192 int EDInstByteSize(EDInstRef inst); 203 EDInstRef inst); 212 int EDInstID(unsigned *instID, EDInstRef inst); 220 int EDInstIsBranch(EDInstRef inst); 228 int EDInstIsMove(EDInstRef inst); 236 int EDBranchTargetID(EDInstRef inst); 244 int EDMoveSourceID(EDInstRef inst); 252 int EDMoveTargetID(EDInstRef inst); 263 int EDNumTokens(EDInstRef inst); [all …]
|
/external/clang/test/Index/ |
D | cursor-ref-names.cpp | 17 Sub inst; in main() local 18 inst.func(); in main() 19 inst[1]; in main() 20 inst.operator[](1); in main() 22 inst.Base<int>::operator[](1); in main()
|
/external/tcpdump/ |
D | print-zephyr.c | 50 char *inst; member 110 z_triple(char *class, char *inst, const char *recipient) in z_triple() argument 114 snprintf(z_buf, sizeof(z_buf), "<%s,%s,%s>", class, inst, recipient); in z_triple() 168 PARSE_FIELD_STR(z.inst); in zephyr_print() 204 printf(" locate %s", z.inst); in zephyr_print() 214 if (!strcmp(z.inst, "CLIENT")) { in zephyr_print() 252 if (!strcmp(z.inst, "HM")) { in zephyr_print() 257 if (!strcmp(z.inst, "REALM")) { in zephyr_print() 271 printf(" hm_ctl %s", str_to_lower(z.inst)); in zephyr_print() 277 if (!strcmp(z.inst, "HMST_CLIENT") && !strcmp(z.opcode, "GIMMESTATS")) { in zephyr_print() [all …]
|
/external/llvm/utils/TableGen/ |
D | EDEmitter.cpp | 224 const CodeGenInstruction &inst, in populateOperandOrder() argument 228 AsmWriterInst awInst(inst, syntax, -1, -1); in populateOperandOrder() 365 const CodeGenInstruction &inst) { in X86PopulateOperands() argument 366 if (!inst.TheDef->isSubClassOf("X86Inst")) in X86PopulateOperands() 370 unsigned int numOperands = inst.Operands.size(); in X86PopulateOperands() 373 const CGIOperandList::OperandInfo &operandInfo = inst.Operands[index]; in X86PopulateOperands() 380 errs() << "Instruction name: " << inst.TheDef->getName().c_str() << "\n"; in X86PopulateOperands() 395 const CodeGenInstruction &inst, in decorate1() argument 400 opIndex = inst.Operands.getOperandNamed(std::string(opName)); in decorate1() 405 #define DECORATE1(opName, opFlag) decorate1(operandFlags, inst, opName, opFlag) [all …]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXSplitBBatBar.cpp | 44 if (IntrinsicInst *inst = dyn_cast<IntrinsicInst>(II)) { in runOnFunction() local 45 Intrinsic::ID id = inst->getIntrinsicID(); in runOnFunction() 65 Instruction *inst = SplitPoints[i]; in runOnFunction() local 66 inst->getParent()->splitBasicBlock(inst, "bar_split"); in runOnFunction()
|
/external/webkit/Source/WebCore/platform/qt/ |
D | SharedTimerQt.cpp | 46 static SharedTimerQt* inst(); 84 SharedTimerQt* SharedTimerQt::inst() in inst() function in WebCore::SharedTimerQt 128 SharedTimerQt::inst()->m_timerFunction = f; in setSharedTimerFiredFunction() 136 SharedTimerQt::inst()->start(fireTime); in setSharedTimerFireTime() 144 SharedTimerQt::inst()->stop(); in stopSharedTimer()
|
/external/mesa3d/src/glsl/ |
D | ir_print_visitor.cpp | 124 ir_variable *const inst = (ir_variable *) iter.get(); in visit() local 127 inst->accept(this); in visit() 141 ir_instruction *const inst = (ir_instruction *) iter.get(); in visit() local 144 inst->accept(this); in visit() 352 ir_instruction *const inst = (ir_instruction *) iter.get(); in visit() local 354 inst->accept(this); in visit() 399 ir_instruction *const inst = (ir_instruction *) iter.get(); in visit() local 402 inst->accept(this); in visit() 416 ir_instruction *const inst = (ir_instruction *) iter.get(); in visit() local 419 inst->accept(this); in visit() [all …]
|
/external/libffi/man/ |
D | Makefile.in | 232 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 233 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 234 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 235 echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \ 236 $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst"; \ 253 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 254 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 255 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 256 echo " rm -f '$(DESTDIR)$(man3dir)/$$inst'"; \ 257 rm -f "$(DESTDIR)$(man3dir)/$$inst"; \
|
/external/llvm/tools/llvm-mc/ |
D | Disassembler.cpp | 238 inst(disassembler->createInst(byteArrayReader, 0, &ByteArray)); in disassembleEnhanced() local 240 if (inst == 0) { in disassembleEnhanced() 245 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize()); in disassembleEnhanced() 247 unsigned numTokens = inst->numTokens(); in disassembleEnhanced() 256 if (inst->getToken(token, tokenIndex)) { in disassembleEnhanced() 308 if (inst->isBranch()) in disassembleEnhanced() 310 if (inst->isMove()) in disassembleEnhanced() 313 unsigned numOperands = inst->numOperands(); in disassembleEnhanced() 325 if (inst->getOperand(operand, operandIndex)) { in disassembleEnhanced()
|