HomeSort by relevance Sort by last modified time
    Searched refs:inst (Results 1 - 25 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/c/
OP_BREAKPOINT.cpp 7 * It's probably not necessary to update "inst", but we do it
19 ALOGV("+++ break 0x%02x (0x%04x -> 0x%04x)", originalOpcode, inst,
20 INST_REPLACE_OP(inst, originalOpcode));
21 inst = INST_REPLACE_OP(inst, originalOpcode);
OP_RETURN.cpp 2 vsrc1 = INST_AA(inst);
4 (INST_INST(inst) == OP_RETURN) ? "" : "-object", vsrc1);
OP_MOVE.cpp 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
5 (INST_INST(inst) == OP_MOVE) ? "" : "-object", vdst, vsrc1,
OP_CONST_4.cpp 5 vdst = INST_A(inst);
6 tmp = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
OP_UNUSED_FF.cpp 5 ALOGE("unknown opcode 0x%02x\n", INST_INST(inst));
OP_MOVE_RESULT.cpp 2 vdst = INST_AA(inst);
4 (INST_INST(inst) == OP_MOVE_RESULT) ? "" : "-object",
OP_REM_DOUBLE_2ADDR.cpp 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
OP_REM_FLOAT_2ADDR.cpp 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
OP_MOVE_FROM16.cpp 2 vdst = INST_AA(inst);
5 (INST_INST(inst) == OP_MOVE_FROM16) ? "" : "-object", vdst, vsrc1,
OP_MOVE_WIDE.cpp 4 vdst = INST_A(inst);
5 vsrc1 = INST_B(inst);
  /external/webrtc/src/modules/audio_processing/ns/
ns_core.c 22 void WebRtcNs_set_feature_extraction_parameters(NSinst_t* inst) {
24 inst->featureExtractionParams.binSizeLrt = (float)0.1;
25 inst->featureExtractionParams.binSizeSpecFlat = (float)0.05;
26 inst->featureExtractionParams.binSizeSpecDiff = (float)0.1;
29 inst->featureExtractionParams.rangeAvgHistLrt = (float)1.0;
33 inst->featureExtractionParams.factor1ModelPars = (float)1.20; //for lrt and spectral diff
34 inst->featureExtractionParams.factor2ModelPars = (float)0.9; //for spectral_flatness:
38 inst->featureExtractionParams.thresPosSpecFlat = (float)0.6;
41 inst->featureExtractionParams.limitPeakSpacingSpecFlat =
42 2 * inst->featureExtractionParams.binSizeSpecFlat
    [all...]
nsx_core.c 292 // if (gain <= inst->denoiseBound) {
293 // factor2 = 1.0 - 0.3 * (blim - inst->denoiseBound);
366 // sum of log2(i) from table index to inst->anaLen2 in Q5
380 // sum of log2(i)^2 from table index to inst->anaLen2 in Q2
439 static void UpdateNoiseEstimate(NsxInst_t* inst, int offset) {
447 tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset,
448 inst->magnLen);
450 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(
452 for (i = 0; i < inst->magnLen; i++) {
453 // inst->quantile[i]=exp(inst->lquantile[offset+i])
    [all...]
nsx_core_neon.c 17 static void UpdateNoiseEstimateNeon(NsxInst_t* inst, int offset) {
27 int16_t tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset,
28 inst->magnLen);
31 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2Const,
35 int32x4_t qNoise32x4 = vdupq_n_s32(inst->qNoise);
37 for (ptr_noiseEstLogQuantile = &inst->noiseEstLogQuantile[offset],
38 ptr_noiseEstQuantile = &inst->noiseEstQuantile[0];
39 ptr_noiseEstQuantile < &inst->noiseEstQuantile[inst->magnLen - 3];
43 // inst->noiseEstLogQuantile[offset + i])
    [all...]
  /external/clang/test/Index/
cursor-ref-names.cpp 17 Sub inst; local
18 inst.func();
19 inst[1];
20 inst.operator[](1);
22 inst.Base<int>::operator[](1);
30 // CHECK: cursor-ref-names.cpp:17:9: VarDecl=inst:17:9 (Definition) Extent=[17:5 - 17:13]
35 // CHECK: cursor-ref-names.cpp:18:5: DeclRefExpr=inst:17:9 Extent=[18:5 - 18:9]
37 // CHECK: cursor-ref-names.cpp:19:5: DeclRefExpr=inst:17:9 Extent=[19:5 - 19:9]
41 // CHECK: cursor-ref-names.cpp:20:5: DeclRefExpr=inst:17:9 Extent=[20:5 - 20:9]
44 // CHECK: cursor-ref-names.cpp:22:5: DeclRefExpr=inst:17:9 Extent=[22:5 - 22:9
    [all...]
  /external/webrtc/src/common_audio/vad/
vad_core.c 66 int WebRtcVad_InitCore(VadInstT *inst, short mode)
71 inst->vad = 1;
72 inst->frame_counter = 0;
73 inst->over_hang = 0;
74 inst->num_of_speech = 0;
77 inst->downsampling_filter_states[0] = 0;
78 inst->downsampling_filter_states[1] = 0;
79 inst->downsampling_filter_states[2] = 0;
80 inst->downsampling_filter_states[3] = 0;
85 inst->noise_means[i] = kNoiseDataMeans[i]
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempStorage.java 33 private static TempStorage inst = null; field in class:TempStorage
40 if (inst != null) {
41 inst = (TempStorage) Class.forName(clazz).newInstance();
49 if (inst == null) {
50 inst = new SimpleTempStorage();
63 return inst;
66 public static void setInstance(TempStorage inst) {
67 if (inst == null) {
68 throw new NullPointerException("inst");
70 TempStorage.inst = inst;
    [all...]
  /frameworks/compile/libbcc/lib/AndroidBitcode/
ABCExpandVAArgPass.cpp 35 // process va_arg inst
36 for (llvm::inst_iterator inst = llvm::inst_begin(pFunc),
37 inst_end = llvm::inst_end(pFunc), next_inst = llvm::next(inst);
38 inst != inst_end; inst = next_inst++) {
39 if (inst->getOpcode() == llvm::Instruction::VAArg) {
40 llvm::Value *v = expandVAArg(&*inst);
41 inst->replaceAllUsesWith(v);
42 inst->eraseFromParent();
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListManagedCursorTest.java 60 Instrumentation inst = getInstrumentation(); local
62 int firstVisiblePosition = arrowScroll(inst);
64 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
65 inst.waitForIdleSync();
77 Instrumentation inst = getInstrumentation(); local
79 int firstVisiblePosition = touchScroll(inst);
81 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
82 inst.waitForIdleSync();
95 Instrumentation inst = getInstrumentation(); local
97 int firstVisiblePosition = arrowScroll(inst);
116 Instrumentation inst = getInstrumentation(); local
    [all...]
ListEmptyViewTest.java 55 Instrumentation inst = getInstrumentation(); local
57 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0);
58 inst.waitForIdleSync();
65 Instrumentation inst = getInstrumentation(); local
67 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0);
68 inst.waitForIdleSync();
78 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
79 inst.waitForIdleSync();
87 Instrumentation inst = getInstrumentation(); local
92 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
instruction_map.h 37 // inst (also known as instruction type), size, and mode and arriving at
54 // Finds an opcode that has the given inst, size, and mode for its first
65 // of expressing all combinations of inst and mode with size=0.
67 OpcodeOrNone LookupFirstOpcode(unsigned char inst,
70 return first_instruction_map_.Lookup(inst, size, mode);
75 // the first opcode, and has the given inst, size, and mode for its second
83 unsigned char inst,
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode);
97 void Add(unsigned char inst,
101 OpcodeOrNone* opcode_slot = &first_opcodes_[inst + mode][size]
    [all...]
  /external/open-vcdiff/src/
instruction_map.h 37 // inst (also known as instruction type), size, and mode and arriving at
54 // Finds an opcode that has the given inst, size, and mode for its first
65 // of expressing all combinations of inst and mode with size=0.
67 OpcodeOrNone LookupFirstOpcode(unsigned char inst,
70 return first_instruction_map_.Lookup(inst, size, mode);
75 // the first opcode, and has the given inst, size, and mode for its second
83 unsigned char inst,
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode);
97 void Add(unsigned char inst,
101 OpcodeOrNone* opcode_slot = &first_opcodes_[inst + mode][size]
    [all...]
  /frameworks/base/tests/BrowserTestPlugin/jni/
PluginObject.h 66 SubPlugin(NPP inst) : m_inst(inst) {}
70 NPP inst() const { return m_inst; } function in class:SubPlugin
  /external/libxslt/libxslt/
preproc.c 63 * @inst: the XSLT instruction
71 xsltCheckTopLevelElement(xsltStylesheetPtr style, xmlNodePtr inst, int err) {
73 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL))
76 parent = inst->parent;
79 xsltTransformError(NULL, style, inst,
86 ((parent->ns != inst->ns) &&
87 (!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
91 xsltTransformError(NULL, style, inst,
93 inst->name)
    [all...]
  /packages/apps/Music/tests/src/com/android/music/stress/
AlbumsPlaybackStress.java 62 Instrumentation inst = getInstrumentation(); local
64 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_RIGHT);
65 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_RIGHT);
66 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
67 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
68 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
70 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
71 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
73 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
74 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
KeyUtils.java 46 final Instrumentation inst = test.getInstrumentation(); local
48 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MENU));
49 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
59 final Instrumentation inst = test.getInstrumentation(); local
66 inst.sendKeySync(pushMenuKey);
67 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, shortcutKeyCode));
68 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, shortcutKeyCode));
69 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
78 final Instrumentation inst = test.getInstrumentation(); local
80 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_CENTER))
    [all...]

Completed in 1381 milliseconds

1 2 3 4 5 6 7 8 91011>>