Searched refs:imm (Results 1 - 25 of 234) sorted by relevance

12345678910

/external/chromium_org/chrome/browser/chromeos/input_method/
H A Daccessibility.h17 explicit Accessibility(InputMethodManager* imm);
22 virtual void InputMethodChanged(InputMethodManager* imm,
24 virtual void InputMethodPropertyChanged(InputMethodManager* imm) OVERRIDE;
H A Daccessibility.cc18 Accessibility::Accessibility(InputMethodManager* imm) argument
19 : imm_(imm) {
29 void Accessibility::InputMethodChanged(InputMethodManager* imm, argument
31 DCHECK_EQ(imm, imm_);
57 void Accessibility::InputMethodPropertyChanged(InputMethodManager* imm) { argument
H A Dmode_indicator_browsertest.cc125 InputMethodManager* imm = InputMethodManager::Get(); local
126 ASSERT_TRUE(imm);
129 imm->EnableLayouts("fr", "xkb:fr::fra");
130 ASSERT_LT(1UL, imm->GetNumActiveInputMethods());
142 EXPECT_TRUE(imm->SwitchToNextInputMethod());
157 EXPECT_TRUE(imm->SwitchToNextInputMethod());
179 EXPECT_TRUE(imm->SwitchToNextInputMethod());
189 InputMethodManager* imm = InputMethodManager::Get(); local
190 ASSERT_TRUE(imm);
193 imm
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dimm64.asm7 mov rax, 0x1000 ; 32-bit imm
8 mov rax, 0x1122334455667788 ; 64-bit imm (larger than signed 32-bit)
9 ;mov rax, 0x80000000 ; 64-bit imm (larger than signed 32-bit)
10 mov rax, label1 ; 32-bit imm <--- not 64-bit!
11 mov rax, label2 ; 32-bit imm <--- not 64-bit!
12 mov rax, qword 0x1000 ; 64-bit imm
13 mov rax, qword label1 ; 64-bit imm
14 mov rax, qword label2 ; 64-bit imm
16 mov qword [rax], 0x1000 ; 32-bit imm
17 mov qword [rax], 0x1122334455667788 ; 32-bit imm, overflo
[all...]
H A Driprel1.asm5 mov rax, val ; 32-bit imm
6 mov rax, dword val ; 32-bit imm
7 mov rax, qword val ; 64-bit imm
9 mov rbx, val ; 32-bit imm
10 mov rbx, dword val ; 32-bit imm
11 mov rbx, qword val ; 64-bit imm
37 mov rax, val ; 32-bit imm
38 mov rax, dword val ; 32-bit imm
39 mov rax, qword val ; 64-bit imm
41 mov rbx, val ; 32-bit imm
[all...]
/external/clang/lib/Headers/
H A Drtmintrin.h52 #define _xabort(imm) __builtin_ia32_xabort((imm))
H A Df16cintrin.h38 #define _mm_cvtps_ph(a, imm) __extension__ ({ \
40 (__m128i)__builtin_ia32_vcvtps2ph((__v4sf)__a, (imm)); })
42 #define _mm256_cvtps_ph(a, imm) __extension__ ({ \
44 (__m128i)__builtin_ia32_vcvtps2ph256((__v8sf)__a, (imm)); })
/external/clang/lib/include/
H A Drtmintrin.h52 #define _xabort(imm) __builtin_ia32_xabort((imm))
H A Df16cintrin.h38 #define _mm_cvtps_ph(a, imm) __extension__ ({ \
40 (__m128i)__builtin_ia32_vcvtps2ph((__v4sf)__a, (imm)); })
42 #define _mm256_cvtps_ph(a, imm) __extension__ ({ \
44 (__m128i)__builtin_ia32_vcvtps2ph256((__v8sf)__a, (imm)); })
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
H A Dlc3bbc.c74 yasm_value_delete(&insn->imm);
85 if (!insn->imm.abs)
90 yasm_value_print(&insn->imm, f, indent_level);
146 if (insn->imm.rel
147 && (!yasm_symrec_get_label(insn->imm.rel, &target_prevbc)
154 add_span(add_span_data, bc, 1, &insn->imm, -512+(long)bc->len,
185 insn->imm.size = 4;
186 if (output_value(&insn->imm, *bufp, 2, buf_off, bc, 1, d))
190 insn->imm.size = 5;
191 insn->imm
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_bitarit.h66 lp_build_shl_imm(struct lp_build_context *bld, LLVMValueRef a, unsigned imm);
69 lp_build_shr_imm(struct lp_build_context *bld, LLVMValueRef a, unsigned imm);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.h55 struct tgsi_full_immediate *imm);
77 const struct tgsi_full_immediate *imm);
H A Dtgsi_dump.h58 const struct tgsi_full_immediate *imm );
H A Dtgsi_iterate.h57 struct tgsi_full_immediate *imm );
H A Dtgsi_parse.c148 struct tgsi_full_immediate *imm = &ctx->FullToken.FullImmediate; local
151 memset(imm, 0, sizeof *imm);
152 copy_token(&imm->Immediate, &token);
154 imm_count = imm->Immediate.NrTokens - 1;
156 switch (imm->Immediate.DataType) {
159 next_token(ctx, &imm->u[i].Float);
165 next_token(ctx, &imm->u[i].Uint);
171 next_token(ctx, &imm->u[i].Int);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_bitarit.h66 lp_build_shl_imm(struct lp_build_context *bld, LLVMValueRef a, unsigned imm);
69 lp_build_shr_imm(struct lp_build_context *bld, LLVMValueRef a, unsigned imm);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.h55 struct tgsi_full_immediate *imm);
77 const struct tgsi_full_immediate *imm);
H A Dtgsi_dump.h58 const struct tgsi_full_immediate *imm );
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_simple_shaders.c142 struct ureg_src imm = ureg_imm4f( ureg, 0, 0, 0, 1 ); local
144 ureg_MOV( ureg, out, imm );
185 struct ureg_src imm; local
205 imm = ureg_imm4f( ureg, 0, 0, 0, 1 );
207 ureg_MOV( ureg, out, imm );
231 struct ureg_src imm; local
256 imm = ureg_imm4f( ureg, 0, 0, 0, 1 );
258 ureg_MOV( ureg, out, imm );
285 struct ureg_src imm; local
305 imm
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_simple_shaders.c142 struct ureg_src imm = ureg_imm4f( ureg, 0, 0, 0, 1 ); local
144 ureg_MOV( ureg, out, imm );
185 struct ureg_src imm; local
205 imm = ureg_imm4f( ureg, 0, 0, 0, 1 );
207 ureg_MOV( ureg, out, imm );
231 struct ureg_src imm; local
256 imm = ureg_imm4f( ureg, 0, 0, 0, 1 );
258 ureg_MOV( ureg, out, imm );
285 struct ureg_src imm; local
305 imm
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.h202 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm );
203 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm );
204 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm );
205 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm );
206 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm );
207 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm );
208 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm );
255 void sse2_psllw_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
256 void sse2_pslld_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
257 void sse2_psllq_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
[all...]
H A Drtasm_ppc.h224 ppc_vspltb(struct ppc_function *p, uint vD, uint vB, uint imm);
228 ppc_vsplthw(struct ppc_function *p, uint vD, uint vB, uint imm);
232 ppc_vspltw(struct ppc_function *p, uint vD, uint vB, uint imm);
236 ppc_vspltisw(struct ppc_function *p, uint vD, int imm);
252 ppc_addi(struct ppc_function *p, uint rt, uint ra, int imm);
255 ppc_addis(struct ppc_function *p, uint rt, uint ra, int imm);
261 ppc_andi(struct ppc_function *p, uint rt, uint ra, int imm);
267 ppc_ori(struct ppc_function *p, uint rt, uint ra, int imm);
273 ppc_xori(struct ppc_function *p, uint rt, uint ra, int imm);
279 ppc_li(struct ppc_function *p, uint rt, int imm);
[all...]
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.h202 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm );
203 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm );
204 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm );
205 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm );
206 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm );
207 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm );
208 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm );
255 void sse2_psllw_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
256 void sse2_pslld_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
257 void sse2_psllq_imm( struct x86_function *p, struct x86_reg dst, unsigned imm );
[all...]
H A Drtasm_ppc.h224 ppc_vspltb(struct ppc_function *p, uint vD, uint vB, uint imm);
228 ppc_vsplthw(struct ppc_function *p, uint vD, uint vB, uint imm);
232 ppc_vspltw(struct ppc_function *p, uint vD, uint vB, uint imm);
236 ppc_vspltisw(struct ppc_function *p, uint vD, int imm);
252 ppc_addi(struct ppc_function *p, uint rt, uint ra, int imm);
255 ppc_addis(struct ppc_function *p, uint rt, uint ra, int imm);
261 ppc_andi(struct ppc_function *p, uint rt, uint ra, int imm);
267 ppc_ori(struct ppc_function *p, uint rt, uint ra, int imm);
273 ppc_xori(struct ppc_function *p, uint rt, uint ra, int imm);
279 ppc_li(struct ppc_function *p, uint rt, int imm);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp79 value.imm.f = fabs(value.imm.f);
81 if (value.imm.i < 0)
82 value.imm.i = -value.imm.i;
88 value.imm.f = -value.imm.f;
90 value.imm.u = -value.imm.u;

Completed in 918 milliseconds

12345678910