Home
last modified time | relevance | path

Searched refs:inst (Results 1 – 25 of 156) sorted by relevance

1234567

/external/webrtc/src/modules/audio_processing/ns/main/source/
Dns_core.c22 void WebRtcNs_set_feature_extraction_parameters(NSinst_t *inst) in WebRtcNs_set_feature_extraction_parameters() argument
25 inst->featureExtractionParams.binSizeLrt = (float)0.1; in WebRtcNs_set_feature_extraction_parameters()
26 inst->featureExtractionParams.binSizeSpecFlat = (float)0.05; in WebRtcNs_set_feature_extraction_parameters()
27 inst->featureExtractionParams.binSizeSpecDiff = (float)0.1; in WebRtcNs_set_feature_extraction_parameters()
30 inst->featureExtractionParams.rangeAvgHistLrt = (float)1.0; in WebRtcNs_set_feature_extraction_parameters()
34 inst->featureExtractionParams.factor1ModelPars = (float)1.20; //for lrt and spectral diff in WebRtcNs_set_feature_extraction_parameters()
35 inst->featureExtractionParams.factor2ModelPars = (float)0.9; //for spectral_flatness: in WebRtcNs_set_feature_extraction_parameters()
39 inst->featureExtractionParams.thresPosSpecFlat = (float)0.6; in WebRtcNs_set_feature_extraction_parameters()
42 inst->featureExtractionParams.limitPeakSpacingSpecFlat = 2 in WebRtcNs_set_feature_extraction_parameters()
43 * inst->featureExtractionParams.binSizeSpecFlat; in WebRtcNs_set_feature_extraction_parameters()
[all …]
Dnsx_core.c406 void WebRtcNsx_UpdateNoiseEstimate(NsxInst_t *inst, int offset) in WebRtcNsx_UpdateNoiseEstimate() argument
417 tmp16no2 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset, inst->magnLen); in WebRtcNsx_UpdateNoiseEstimate()
418 inst->qNoise = 14 in WebRtcNsx_UpdateNoiseEstimate()
420 for (i = 0; i < inst->magnLen; i++) in WebRtcNsx_UpdateNoiseEstimate()
424 tmp32no2 = WEBRTC_SPL_MUL_16_16(exp2Const, inst->noiseEstLogQuantile[offset + i]); in WebRtcNsx_UpdateNoiseEstimate()
428 tmp16no1 -= (WebRtc_Word16)inst->qNoise; //shift to get result in Q(qNoise) in WebRtcNsx_UpdateNoiseEstimate()
431 inst->noiseEstQuantile[i] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32no1 + in WebRtcNsx_UpdateNoiseEstimate()
436 inst->noiseEstQuantile[i] = (WebRtc_Word16)WEBRTC_SPL_LSHIFT_W32(tmp32no1, in WebRtcNsx_UpdateNoiseEstimate()
442 void WebRtcNsx_CalcParametricNoiseEstimate(NsxInst_t *inst, in WebRtcNsx_CalcParametricNoiseEstimate() argument
464 tmp32no1 += WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)(inst->minNorm - inst->stages), 11); in WebRtcNsx_CalcParametricNoiseEstimate()
[all …]
/external/webrtc/src/common_audio/vad/main/source/
Dvad_core.c28 int WebRtcVad_InitCore(VadInstT *inst, short mode) in WebRtcVad_InitCore() argument
33 inst->vad = 1; in WebRtcVad_InitCore()
34 inst->frame_counter = 0; in WebRtcVad_InitCore()
35 inst->over_hang = 0; in WebRtcVad_InitCore()
36 inst->num_of_speech = 0; in WebRtcVad_InitCore()
39 inst->downsampling_filter_states[0] = 0; in WebRtcVad_InitCore()
40 inst->downsampling_filter_states[1] = 0; in WebRtcVad_InitCore()
41 inst->downsampling_filter_states[2] = 0; in WebRtcVad_InitCore()
42 inst->downsampling_filter_states[3] = 0; in WebRtcVad_InitCore()
47 inst->noise_means[i] = kNoiseDataMeans[i]; in WebRtcVad_InitCore()
[all …]
Dvad_sp.c63 WebRtc_Word16 WebRtcVad_FindMinimum(VadInstT* inst, in WebRtcVad_FindMinimum() argument
76 idxptr = &inst->index_vector[offset]; in WebRtcVad_FindMinimum()
77 valptr = &inst->low_value_vector[offset]; in WebRtcVad_FindMinimum()
191 if ((inst->frame_counter) > 4) in WebRtcVad_FindMinimum()
196 j = inst->frame_counter; in WebRtcVad_FindMinimum()
210 if (inst->frame_counter > 0) in WebRtcVad_FindMinimum()
212 if (meanV < inst->mean_value[n]) in WebRtcVad_FindMinimum()
224 tmp32 = WEBRTC_SPL_MUL_16_16((alpha+1), inst->mean_value[n]); in WebRtcVad_FindMinimum()
228 inst->mean_value[n] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32, 15); in WebRtcVad_FindMinimum()
230 return inst->mean_value[n]; in WebRtcVad_FindMinimum()
Dvad_core.h65 int WebRtcVad_InitCore(VadInstT* inst, short mode);
84 int WebRtcVad_set_mode_core(VadInstT* inst, short mode);
105 WebRtc_Word16 WebRtcVad_CalcVad32khz(VadInstT* inst, WebRtc_Word16* speech_frame,
107 WebRtc_Word16 WebRtcVad_CalcVad16khz(VadInstT* inst, WebRtc_Word16* speech_frame,
109 WebRtc_Word16 WebRtcVad_CalcVad8khz(VadInstT* inst, WebRtc_Word16* speech_frame,
129 WebRtc_Word16 WebRtcVad_GmmProbability(VadInstT* inst, WebRtc_Word16* feature_vector,
Dvad_filterbank.c120 WebRtc_Word16 WebRtcVad_get_features(VadInstT *inst, in WebRtcVad_get_features() argument
138 WebRtcVad_SplitFilter(ptin, hptout, lptout, &inst->upper_state[filtno], in WebRtcVad_get_features()
139 &inst->lower_state[filtno], curlen); in WebRtcVad_get_features()
148 WebRtcVad_SplitFilter(ptin, hptout, lptout, &inst->upper_state[filtno], in WebRtcVad_get_features()
149 &inst->lower_state[filtno], curlen); in WebRtcVad_get_features()
164 WebRtcVad_SplitFilter(ptin, hptout, lptout, &inst->upper_state[filtno], in WebRtcVad_get_features()
165 &inst->lower_state[filtno], curlen); in WebRtcVad_get_features()
177 WebRtcVad_SplitFilter(ptin, hptout, lptout, &inst->upper_state[filtno], in WebRtcVad_get_features()
178 &inst->lower_state[filtno], curlen); in WebRtcVad_get_features()
189 WebRtcVad_SplitFilter(ptin, hptout, lptout, &inst->upper_state[filtno], in WebRtcVad_get_features()
[all …]
/external/libxslt/libxslt/
Dpreproc.c71 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 …]
Dtransform.h93 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 …]
Dattributes.c642 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 …]
Dtransform.c546 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 …]
Dtemplates.c69 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 …]
Dvariables.c277 xsltTransformError(ctxt, NULL, ctxt->inst, in xsltExtensionInstructionResultRegister()
287 xsltTransformError(ctxt, NULL, ctxt->inst, in xsltExtensionInstructionResultRegister()
814 oldInst = ctxt->inst; in xsltEvalVariable()
917 (comp != NULL) ? comp->inst : NULL, in xsltEvalVariable()
1003 ctxt->inst = oldInst; in xsltEvalVariable()
1043 elem->comp && elem->comp->inst) in xsltEvalGlobalVariable()
1044 xslHandleDebugger(elem->comp->inst, NULL, NULL, ctxt); in xsltEvalGlobalVariable()
1047 oldInst = ctxt->inst; in xsltEvalGlobalVariable()
1075 ctxt->inst = comp->inst; in xsltEvalGlobalVariable()
1077 ctxt->inst = NULL; in xsltEvalGlobalVariable()
[all …]
/external/llvm/tools/edis/
DEDMain.cpp79 EDInst *inst = ((EDDisassembler*)disassembler)->createInst(byteReader, in EDCreateInsts() local
82 if (!inst) in EDCreateInsts()
85 insts[index] = inst; in EDCreateInsts()
86 address += inst->byteSize(); in EDCreateInsts()
92 void EDReleaseInst(EDInstRef inst) { in EDReleaseInst() argument
93 delete ((EDInst*)inst); in EDReleaseInst()
96 int EDInstByteSize(EDInstRef inst) { in EDInstByteSize() argument
97 return ((EDInst*)inst)->byteSize(); in EDInstByteSize()
101 EDInstRef inst) { in EDGetInstString() argument
102 return ((EDInst*)inst)->getString(*buf); in EDGetInstString()
[all …]
/external/e2fsprogs/misc/
Dfsck.c419 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/
DMCWin64EH.cpp66 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/
Dinstruction_map.h67 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/
DEnhancedDisassembly.h172 void EDReleaseInst(EDInstRef inst);
179 int EDInstByteSize(EDInstRef inst);
190 EDInstRef inst);
199 int EDInstID(unsigned *instID, EDInstRef inst);
207 int EDInstIsBranch(EDInstRef inst);
215 int EDInstIsMove(EDInstRef inst);
223 int EDBranchTargetID(EDInstRef inst);
231 int EDMoveSourceID(EDInstRef inst);
239 int EDMoveTargetID(EDInstRef inst);
250 int EDNumTokens(EDInstRef inst);
[all …]
/external/llvm/utils/TableGen/
DEDEmitter.cpp217 const CodeGenInstruction &inst, in populateOperandOrder() argument
221 AsmWriterInst awInst(inst, syntax, -1, -1); in populateOperandOrder()
348 const CodeGenInstruction &inst) { in X86PopulateOperands() argument
349 if (!inst.TheDef->isSubClassOf("X86Inst")) in X86PopulateOperands()
353 unsigned int numOperands = inst.Operands.size(); in X86PopulateOperands()
356 const CGIOperandList::OperandInfo &operandInfo = inst.Operands[index]; in X86PopulateOperands()
363 errs() << "Instruction name: " << inst.TheDef->getName().c_str() << "\n"; in X86PopulateOperands()
378 const CodeGenInstruction &inst, in decorate1() argument
383 opIndex = inst.Operands.getOperandNamed(std::string(opName)); in decorate1()
388 #define DECORATE1(opName, opFlag) decorate1(operandFlags, inst, opName, opFlag)
[all …]
/external/tcpdump/
Dprint-zephyr.c50 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/bluetooth/glib/gobject/
Dgtypeplugin.h32 #define G_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TYPE_PLUGIN, GTypePlugin)) argument
34 #define G_IS_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TYPE_PLUGIN)) argument
36 #define G_TYPE_PLUGIN_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TYPE_PLUGIN, G… argument
/external/webkit/Source/WebCore/platform/qt/
DSharedTimerQt.cpp46 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/
Dir_print_visitor.cpp124 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/
DMakefile.in232 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/
DDisassembler.cpp241 inst(disassembler->createInst(byteArrayReader, 0, &ByteArray)); in disassembleEnhanced() local
243 if (inst == 0) { in disassembleEnhanced()
248 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize()); in disassembleEnhanced()
250 unsigned numTokens = inst->numTokens(); in disassembleEnhanced()
259 if (inst->getToken(token, tokenIndex)) { in disassembleEnhanced()
312 if (inst->isBranch()) in disassembleEnhanced()
314 if (inst->isMove()) in disassembleEnhanced()
317 unsigned numOperands = inst->numOperands(); in disassembleEnhanced()
329 if (inst->getOperand(operand, operandIndex)) { in disassembleEnhanced()
/external/grub/docs/
DMakefile.in445 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
446 inst=`echo $$inst | sed -e 's/^.*\///'`; \
447 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
448 echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
449 $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \
466 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
467 inst=`echo $$inst | sed -e 's/^.*\///'`; \
468 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
469 echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
470 rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
[all …]

1234567