Searched defs:is_int (Results 1 - 12 of 12) sorted by relevance

/external/qemu/target-i386/
H A Dexcp_helper.c87 * is_int is TRUE if coming from the int instruction. next_eip is the
89 * is_int is TRUE.
92 int intno, int is_int, int error_code,
95 if (!is_int) {
104 env->exception_is_int = is_int;
91 raise_interrupt(CPUX86State *env, int intno, int is_int, int error_code, int next_eip_addend) argument
H A Dseg_helper.c495 int intno, int is_int, int error_code,
506 if (!is_int && !is_hw)
508 if (is_int)
558 if (is_int && dpl < cpl)
721 int intno, int is_int, int error_code,
732 if (!is_int && !is_hw)
734 if (is_int)
759 if (is_int && dpl < cpl)
959 int intno, int is_int, int error_code,
977 if (is_int)
494 do_interrupt_protected(CPUX86State *env, int intno, int is_int, int error_code, unsigned int next_eip, int is_hw) argument
720 do_interrupt64(CPUX86State *env, int intno, int is_int, int error_code, target_ulong next_eip, int is_hw) argument
958 do_interrupt_real(CPUX86State *env, int intno, int is_int, int error_code, unsigned int next_eip) argument
997 do_interrupt_user(CPUX86State *env, int intno, int is_int, int error_code, target_ulong next_eip) argument
1030 handle_even_inj(CPUX86State *env, int intno, int is_int, int error_code, int is_hw, int rm) argument
1056 do_interrupt_all(CPUX86State *env, int intno, int is_int, int error_code, target_ulong next_eip, int is_hw) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_parse.py171 def is_int(self): member in class:Format
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_parse.py171 def is_int(self): member in class:Format
/external/chromium_org/ppapi/cpp/
H A Dvar.h146 /// The <code>is_int</code> function returns the internal representation.
153 bool is_int() const { return var_.type == PP_VARTYPE_INT32; } function in class:pp::Var
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Ds_expression.h72 virtual bool is_int() const { return false; } function in class:s_expression
96 bool is_int() const { return true; } function in class:s_int
/external/clang/test/SemaTemplate/
H A Doverload-candidates.cpp54 template<typename T> struct is_int { enum { value = false }; }; struct
55 template<> struct is_int<int> { enum { value = true }; }; struct
56 template<typename T> typename llvm::enable_if<is_int<T> >::type if_int(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}}
/external/mesa3d/src/glsl/
H A Ds_expression.h72 virtual bool is_int() const { return false; } function in class:s_expression
96 bool is_int() const { return true; } function in class:s_int
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A Dcompute.c1082 bool is_int = util_format_is_pure_integer(surface_fmts[i]); local
1087 128, 32, (is_int ? init0i : init0f));
1094 check_tex(ctx, 1, (is_int ? expecti : expectf), NULL);
1182 bool is_int = util_format_is_pure_integer(surface_fmts[i]); local
1187 512, 32, (is_int ? init0i : init0f));
1194 check_tex(ctx, 1, (is_int && is_signed ? expects :
1195 is_int && !is_signed ? expectu :
/external/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c1082 bool is_int = util_format_is_pure_integer(surface_fmts[i]); local
1087 128, 32, (is_int ? init0i : init0f));
1094 check_tex(ctx, 1, (is_int ? expecti : expectf), NULL);
1182 bool is_int = util_format_is_pure_integer(surface_fmts[i]); local
1187 512, 32, (is_int ? init0i : init0f));
1194 check_tex(ctx, 1, (is_int && is_signed ? expects :
1195 is_int && !is_signed ? expectu :
/external/clang/test/CXX/drs/
H A Ddr3xx.cpp658 template<typename T> struct is_int;
659 template<> struct is_int<int> {}; struct in namespace:dr352
662 template<typename T> int f(T (*p)(T)) { is_int<T>(); }
669 template<typename T> int f(T, T (*p)(T)) { is_int<T>(); }
676 template <class T> int f(T, T (*p)(T)) { is_int<T>(); }
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPyrexTypes.py145 # is_int boolean Is a C integer type
201 is_int = 0 variable in class:PyrexType
270 return (self.is_int or self.is_float or self.is_complex or self.is_pyobject or
1409 is_int = 1 variable in class:CIntType
1466 return src_type.is_int or src_type.is_enum or src_type is error_type
3491 (src_type.is_int and
3621 elif ((src_type.is_int and dst_type.is_int) or

Completed in 3445 milliseconds