Searched defs:int_type (Results 1 - 20 of 20) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_const.h141 LLVMTypeRef int_type; local
145 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *));
146 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
148 LLVMPointerType(int_type, 0),
H A Dlp_bld_printf.c140 LLVMTypeRef int_type = LLVMIntTypeInContext(gallivm->context, sizeof(int) * 8); local
142 param = LLVMBuildZExt(builder, param, int_type, "");
144 param = LLVMBuildSExt(builder, param, int_type, "");
H A Dlp_bld_format_srgb.c187 struct lp_type int_type = lp_int_type(src_type); local
199 tmp = LLVMBuildBitCast(builder, tmp, lp_build_vec_type(gallivm, int_type), "");
H A Dlp_bld_sample.h115 struct lp_type int_type; member in struct:lp_sampler_size_query_params
332 struct lp_type int_type; member in struct:lp_build_sample_context
H A Dlp_bld_arit.c1867 LLVMTypeRef int_type; local
1873 int_type = lp_build_int_vec_type(bld->gallivm, type);
1878 sign = LLVMBuildBitCast(builder, a, int_type, "");
1880 one = LLVMConstBitCast(bld->one, int_type);
2901 struct lp_type int_type = lp_int_type(bld->type); local
2979 int_type, PIPE_FUNC_EQUAL,
3705 struct lp_type int_type = lp_int_type(bld->type); local
3718 return lp_build_compare(bld->gallivm, int_type, PIPE_FUNC_NOTEQUAL,
3732 struct lp_type int_type = lp_int_type(type); local
3733 LLVMValueRef const0 = lp_build_const_int_vec(gallivm, int_type,
[all...]
H A Dlp_bld_tgsi_soa.c178 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
191 int_type, "looplimiter");
194 LLVMConstInt(int_type, LP_MAX_TGSI_LOOP_ITERATIONS, false),
450 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
483 LLVMConstInt(int_type, 1, false),
500 LLVMConstNull(int_type), "i2cond");
2716 params.int_type = bld->bld_base.int_bld.type;
/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Doverflow.pass.cpp14 // int_type overflow(int_type c = traits::eof());
29 typedef typename base::int_type int_type; typedef in struct:test_buf
37 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
H A Dpbackfail.pass.cpp12 // int_type pbackfail(int_type c = traits::eof());
25 typedef typename base::int_type int_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
H A Dunderflow.pass.cpp14 // int_type underflow();
30 typedef typename base::int_type int_type; typedef in struct:test_buf
37 virtual int_type underflow() {return base::underflow();}
123 assert(f.sbumpc() == static_cast<Traits::int_type>(-1));
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Doverflow.pass.cpp14 // int_type overflow(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
H A Dpbackfail.pass.cpp14 // int_type pbackfail(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
H A Dunderflow.pass.cpp14 // int_type underflow();
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type underflow() {return base::underflow();}
/external/fmtlib/fmt/
H A Dostream.h23 typedef typename std::basic_streambuf<Char>::int_type int_type; typedef in class:fmt::internal::FormatBuf
34 int_type overflow(int_type ch = traits_type::eof()) {
/external/libcxx/test/support/
H A Dconstexpr_char_traits.hpp23 typedef int int_type; typedef in struct:constexpr_char_traits
44 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT
47 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT
50 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT
51 {return int_type(__c);}
53 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT
56 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT
57 {return int_type(EO
[all...]
/external/clang/test/SemaTemplate/
H A Dclass-template-spec.cpp41 typedef int int_type; typedef
42 void testme(X<int_type> *x1, X<float, int> *x2) {
/external/mesa3d/src/compiler/glsl/
H A Dir_expression_operation.py82 int_type = type("int", "i", "GLSL_TYPE_INT") variable
87 all_types = (uint_type, int_type, float_type, double_type, bool_type)
88 numeric_types = (uint_type, int_type, float_type, double_type)
89 signed_numeric_types = (int_type, float_type, double_type)
90 integer_types = (uint_type, int_type)
432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}"),
436 operation("i2f", 1, source_types=(int_type,), dest_type=float_type, c_expression="(float) {src0}"),
444 operation("b2i", 1, source_types=(bool_type,), dest_type=int_type, c_expression="{src0} ? 1 : 0"),
448 operation("i2u", 1, source_types=(int_type,), dest_type=uint_type, c_expression="{src0}"),
450 operation("u2i", 1, source_types=(uint_type,), dest_type=int_type, c_expressio
[all...]
/external/webrtc/talk/app/webrtc/
H A Dstatstypes.cc232 StatsReport::Value::Value(StatsValueName name, int64_t value, Type int_type) argument
233 : name(name), type_(int_type) {
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c222 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
228 elem_types[1] = LLVMArrayType(int_type, /* num_vs_constants */
273 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
279 elem_types[1] = LLVMArrayType(int_type, /* num_constants */
290 elem_types[6] = LLVMPointerType(LLVMPointerType(int_type, 0), 0);
291 elem_types[7] = LLVMPointerType(LLVMVectorType(int_type,
293 elem_types[8] = LLVMPointerType(LLVMVectorType(int_type,
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c311 struct lp_type int_type = lp_int_type(type); local
382 int_vec_type = lp_build_vec_type(gallivm, int_type);
540 LLVMValueRef s_max_mask = lp_build_const_int_vec(gallivm, int_type, 255);
/external/valgrind/perf/
H A Dtinycc.c2376 static CType char_pointer_type, func_old_type, int_type;
10131 vsetc(&int_type, VT_CONST, &cval);
10262 type = &int_type;
12176 ss = sym_push(v, &int_type, VT_CONST, c);
14864 int_type.t = VT_INT;
14870 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
2374 static CType char_pointer_type, func_old_type, int_type; variable

Completed in 760 milliseconds