Searched refs:raw_type (Results 1 – 5 of 5) sorted by relevance
/external/perfetto/src/trace_processor/sqlite/ |
D | sqlite_utils.h | 395 const char* raw_type = in GetColumnsForTable() local 397 if (!name || !raw_type || !*name) { in GetColumnsForTable() 403 if (base::CaseInsensitiveEqual(raw_type, "STRING") || in GetColumnsForTable() 404 base::CaseInsensitiveEqual(raw_type, "TEXT")) { in GetColumnsForTable() 406 } else if (base::CaseInsensitiveEqual(raw_type, "DOUBLE")) { in GetColumnsForTable() 408 } else if (base::CaseInsensitiveEqual(raw_type, "BIG INT") || in GetColumnsForTable() 409 base::CaseInsensitiveEqual(raw_type, "UNSIGNED INT") || in GetColumnsForTable() 410 base::CaseInsensitiveEqual(raw_type, "INT") || in GetColumnsForTable() 411 base::CaseInsensitiveEqual(raw_type, "BOOLEAN")) { in GetColumnsForTable() 413 } else if (!*raw_type) { in GetColumnsForTable() [all …]
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs_lower_regioning.cpp | 347 const brw_reg_type raw_type = brw_int_type(MIN2(type_sz(tmp.type), 4), in lower_src_region() local 349 const unsigned n = type_sz(tmp.type) / type_sz(raw_type); in lower_src_region() 355 ibld.MOV(subscript(tmp, raw_type, j), subscript(raw_src, raw_type, j)); in lower_src_region() 396 const brw_reg_type raw_type = brw_int_type(MIN2(type_sz(tmp.type), 4), in lower_dst_region() local 398 const unsigned n = type_sz(tmp.type) / type_sz(raw_type); in lower_dst_region() 408 ibld.MOV(subscript(tmp, raw_type, j), in lower_dst_region() 409 subscript(inst->dst, raw_type, j)); in lower_dst_region() 413 ibld.at(block, inst->next).MOV(subscript(inst->dst, raw_type, j), in lower_dst_region() 414 subscript(tmp, raw_type, j)); in lower_dst_region()
|
/external/rust/crates/bindgen/src/codegen/ |
D | helpers.rs | 160 pub fn raw_type(ctx: &BindgenContext, name: &str) -> TokenStream { in raw_type() function 187 (FloatKind::Float, false) => raw_type(ctx, "c_float"), in float_kind_rust_type() 188 (FloatKind::Double, false) => raw_type(ctx, "c_double"), in float_kind_rust_type()
|
D | mod.rs | 3472 IntKind::Char { .. } => Ok(raw_type(ctx, "c_char")), in try_to_rust_ty() 3473 IntKind::SChar => Ok(raw_type(ctx, "c_schar")), in try_to_rust_ty() 3474 IntKind::UChar => Ok(raw_type(ctx, "c_uchar")), in try_to_rust_ty() 3475 IntKind::Short => Ok(raw_type(ctx, "c_short")), in try_to_rust_ty() 3476 IntKind::UShort => Ok(raw_type(ctx, "c_ushort")), in try_to_rust_ty() 3477 IntKind::Int => Ok(raw_type(ctx, "c_int")), in try_to_rust_ty() 3478 IntKind::UInt => Ok(raw_type(ctx, "c_uint")), in try_to_rust_ty() 3479 IntKind::Long => Ok(raw_type(ctx, "c_long")), in try_to_rust_ty() 3480 IntKind::ULong => Ok(raw_type(ctx, "c_ulong")), in try_to_rust_ty() 3481 IntKind::LongLong => Ok(raw_type(ctx, "c_longlong")), in try_to_rust_ty() [all …]
|
/external/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
D | nir_to_spirv.c | 705 SpvId raw_type = bit_size == 1 ? spirv_builder_type_bool(&ctx->builder) : in get_alu_src_raw() local 710 return spirv_builder_emit_composite_extract(&ctx->builder, raw_type, in get_alu_src_raw() 715 raw_type, in get_alu_src_raw() 728 raw_type, in get_alu_src_raw()
|