HomeSort by relevance Sort by last modified time
    Searched refs:imm (Results 51 - 75 of 155) sorted by null

1 23 4 5 6 7

  /frameworks/base/core/java/android/inputmethodservice/
ExtractEditText.java 153 @Override protected void viewClicked(InputMethodManager imm) {
  /prebuilts/sdk/renderscript/clang-include/
avxintrin.h 426 _mm256_extract_epi32(__m256i a, int const imm)
429 return b[imm];
433 _mm256_extract_epi16(__m256i a, int const imm)
436 return b[imm];
440 _mm256_extract_epi8(__m256i a, int const imm)
443 return b[imm];
448 _mm256_extract_epi64(__m256i a, const int imm)
451 return b[imm];
475 _mm256_insert_epi32(__m256i a, int b, int const imm)
478 c[imm & 7] = b
    [all...]
emmintrin.h 824 #define _mm_slli_si128(VEC, IMM) \
825 ((__m128i)__builtin_ia32_pslldqi128((__m128i)(VEC), (IMM)*8))
888 #define _mm_srli_si128(VEC, IMM) \
889 ((__m128i)__builtin_ia32_psrldqi128((__m128i)(VEC), (IMM)*8))
    [all...]
  /external/qemu/target-arm/
translate.c 4427 uint32_t imm, mask; local
7781 uint32_t insn, imm, shift, offset; local
    [all...]
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 86 void EmitIMM(const MCOperand &imm, unsigned &CurByte, raw_ostream &OS) const;
124 EmitIMM(const MCOperand &imm, unsigned &CurByte, raw_ostream &OS) const {
125 int32_t val = (int32_t)imm.getImm();
186 // Emit an IMM instruction if the instruction we are encoding requires it
  /packages/apps/Contacts/src/com/android/contacts/activities/
JoinContactActivity.java 236 final InputMethodManager imm = (InputMethodManager) local
238 if (imm != null) {
239 if (!imm.showSoftInput(view, 0)) {
  /frameworks/base/core/java/android/app/
SearchDialog.java 511 InputMethodManager imm = (InputMethodManager)getContext()
513 if (imm != null) {
514 imm.hideSoftInputFromWindow(
653 InputMethodManager imm = (InputMethodManager)getContext() local
655 if (imm != null && imm.isFullscreenMode() &&
656 imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0)) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 385 InputMethodManager imm = (InputMethodManager) local
387 if (imm != null) {
388 imm.hideSoftInputFromWindow(getWindowToken(), 0);
428 InputMethodManager imm = (InputMethodManager) local
430 if (imm == null || !imm.isFullscreenMode()) return;
435 imm.displayCompletions(mQueryTextView, completions);
  /external/v8/src/ia32/
disasm-ia32.cc 521 const char* mnem = "Imm???";
562 int32_t imm = *reinterpret_cast<int32_t*>(data+2); local
563 AppendToBuffer("test %s,0x%x", NameOfCPURegister(rm), imm);
568 int32_t imm = *reinterpret_cast<int32_t*>(data+1+count); local
569 AppendToBuffer(",0x%x", imm);
963 int32_t imm = local
968 imm);
980 int32_t imm = *data; local
981 AppendToBuffer(",0x%x", imm);
1107 int32_t imm = *data; local
1113 int32_t imm = *reinterpret_cast<int32_t*>(data); local
1132 int32_t imm = *data; local
    [all...]
assembler-ia32.h 745 void add(Register dst, const Immediate& imm) { add(Operand(dst), imm); }
766 void cmp(Register reg, const Immediate& imm) { cmp(Operand(reg), imm); }
767 void cmp(const Operand& op, const Immediate& imm);
802 void or_(Register dst, const Immediate& imm) { or_(Operand(dst), imm); }
825 void sub(Register dst, const Immediate& imm) { sub(Operand(dst), imm); }
831 void test(Register reg, const Immediate& imm);
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 211 imm( 1 << (32 - GGL_DITHER_ORDER_SHIFT)));
265 AND(AL, 0, parts.dither.reg, parts.count.reg, imm(mask));
324 SUB(AL, S, parts.count.reg, parts.count.reg, imm(1<<16));
339 ADD(AL, 0, parts.cbPtr.reg, parts.cbPtr.reg, imm(parts.cbPtr.size>>3));
341 SUB(AL, S, parts.count.reg, parts.count.reg, imm(1<<16));
368 SUB(AL, 0, parts.count.reg, parts.count.reg, imm(1));
378 AND(AL, 0, tx, Rx, imm(GGL_DITHER_MASK));
379 AND(AL, 0, ty, Ry, imm(GGL_DITHER_MASK));
832 case GGL_CLEAR: MOV(AL, 0, pixel.reg, imm(0)); break;
854 case GGL_SET: MVN(AL, 0, pixel.reg, imm(0)); break
    [all...]
MIPSAssembler.cpp 43 ** Refactored ARM address-mode static functions (imm(), reg_imm(), imm12_pre(), etc.)
211 uint32_t immediate, uint32_t& rot, uint32_t& imm)
215 imm = immediate;
227 uint32_t ArmToMipsAssembler::imm(uint32_t immediate) function in class:android::ArmToMipsAssembler
373 // this works with the imm(), reg_imm() methods above, which are directly
    [all...]
load_store.cpp 52 ADD(AL, 0, addr.reg, addr.reg, imm(3));
96 ADD(AL, 0, addr.reg, addr.reg, imm(3));
127 AND(AL, 0, d.reg, s, imm(mask)); // component = packed & mask;
129 BIC(AL, 0, d.reg, s, imm(~mask)); // component = packed & mask;
137 AND(AL, 0, d.reg, s, imm(mask)); // component = packed & mask;
139 BIC(AL, 0, d.reg, s, imm(~mask)); // component = packed & mask;
ARMAssemblerProxy.cpp 81 int ARMAssemblerProxy::buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm)
83 return mTarget->buildImmediate(i, rot, imm);
88 uint32_t ARMAssemblerProxy::imm(uint32_t immediate) function in class:android::ARMAssemblerProxy
90 return mTarget->imm(immediate);
ARMAssembler.h 68 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm);
70 virtual uint32_t imm(uint32_t immediate);
  /external/clang/lib/Headers/
emmintrin.h     [all...]
avxintrin.h 430 _mm256_extract_epi32(__m256i a, int const imm)
433 return b[imm];
437 _mm256_extract_epi16(__m256i a, int const imm)
440 return b[imm];
444 _mm256_extract_epi8(__m256i a, int const imm)
447 return b[imm];
452 _mm256_extract_epi64(__m256i a, const int imm)
455 return b[imm];
476 _mm256_insert_epi32(__m256i a, int b, int const imm)
479 c[imm & 7] = b
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 1029 InputMethodManager imm = InputMethodManager.peekInstance(); local
1114 InputMethodManager imm = InputMethodManager.peekInstance(); local
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerAlu.cpp 749 int common_alu_int_lit(ALU_Opcode opc, u2 vA, u2 vB, s2 imm) { //except div and rem
751 alu_binary_imm_reg(OpndSize_32, opc, imm, 1, false);
756 int common_shift_int_lit(ALU_Opcode opc, u2 vA, u2 vB, s2 imm) {
757 return common_alu_int_lit(opc, vA, vB, imm);
772 int alu_rsub_int(ALU_Opcode opc, u2 vA, s2 imm, u2 vB) {
773 move_imm_to_reg(OpndSize_32, imm, 2, false);
969 int isPowerOfTwo(int imm) {
972 if(imm == (1 << i)) return i;
978 int div_lit_strength_reduction(u2 vA, u2 vB, s2 imm) {
981 int power = isPowerOfTwo(imm);
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 213 *(unsigned char*)stream = (unsigned char)opnds[idx].imm();
218 *(unsigned short*)stream = (unsigned short)opnds[idx].imm();
223 *(unsigned*)stream = (unsigned)opnds[idx].imm();
230 *(long long*)stream = (long long)opnds[idx].imm();
243 *(unsigned char*)stream = (unsigned char)opnds[*pargsCount].imm();
250 *(unsigned short*)stream = (unsigned short)opnds[*pargsCount].imm();
257 *(unsigned*)stream = (unsigned)opnds[*pargsCount].imm();
400 assert(original.imm() == decoded.imm());
927 { "Imm", OpndKind_Imm }
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsModel.java 568 private boolean needsToShowImeSwitchOngoingNotification(InputMethodManager imm) {
569 List<InputMethodInfo> imis = imm.getEnabledInputMethodList();
579 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(imi,
612 InputMethodManager imm = local
614 List<InputMethodInfo> imis = imm.getInputMethodList();
616 mImeState.enabled = (visible && needsToShowImeSwitchOngoingNotification(imm));
618 imm, imis, mContext.getPackageManager());
624 InputMethodManager imm, List<InputMethodInfo> imis, PackageManager pm) {
631 final InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype();
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNode.h 186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
194 , m_opInfo(imm.m_value)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 224 final InputMethodManager imm = mImm; local
228 imm.setInputMethodAndSubtype(token, imiId, subtype);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 164 final InputMethodManager imm = (InputMethodManager)mLatinIME.getSystemService( local
169 for (final InputMethodInfo imi : imm.getInputMethodList()) {
  /external/v8/src/mips/
assembler-mips.cc 682 int32_t imm = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift;
683 imm |= (instr_ori & static_cast<int32_t>(kImm16Mask));
685 if (imm == kEndOfJumpChain) {
690 int32_t delta = instr_address - imm;
734 uint32_t imm = (uint32_t)buffer_ + target_pos;
735 ASSERT((imm & 3) == 0);
741 instr_lui | ((imm & kHiMask) >> kLuiShift));
743 instr_ori | (imm & kImm16Mask));
997 uint32_t imm = (uint32_t)buffer_ + target_pos; local
998 ASSERT((imm & 3) == 0)
1927 int32_t imm = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift; local
    [all...]

Completed in 476 milliseconds

1 23 4 5 6 7