Searched refs:vT (Results 1 - 4 of 4) sorted by relevance
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | nine_shader.c | 487 struct ureg_src vT[8]; /* PS texcoord in */ member 898 assert(idx >= 0 && idx < ARRAY_SIZE(tx->regs.vT)); in tx_texcoord_alloc() 899 if (ureg_src_is_undef(tx->regs.vT[idx])) in tx_texcoord_alloc() 900 tx->regs.vT[idx] = ureg_DECL_fs_input(tx->ureg, tx->texcoord_sn, idx, in tx_texcoord_alloc() 1041 src = tx->regs.vT[param->idx]; in tx_src_param() 1305 dst = ureg_dst(tx->regs.vT[param->idx]); in _tx_dst_param() 2501 ureg_MOV(ureg, ureg_writemask(ureg_saturate(dst), TGSI_WRITEMASK_XYZ), tx->regs.vT[s]); in DECL_SPECIAL() 2528 reg = tx->regs.vT[tx->insn.dst[0].idx]; in DECL_SPECIAL() 2581 apply_ps1x_projection(tx, texcoord, tx->regs.vT[m], m); in DECL_SPECIAL() 2669 ureg_DP3(ureg, ureg_writemask(dst, TGSI_WRITEMASK_X), tx->regs.vT[ in DECL_SPECIAL() [all...] |
H A D | nine_ff.c | 1092 struct ureg_src vT[8]; /* TEXCOORD[i] */ member 1363 ps.vT[s] = ureg_DECL_fs_input(ureg, texcoord_sn, s, TGSI_INTERPOLATE_PERSPECTIVE); in nine_ff_build_ps() 1382 ps.vT[s] = ureg_DECL_fs_input(ureg, texcoord_sn, s, TGSI_INTERPOLATE_PERSPECTIVE); in nine_ff_build_ps() 1413 struct ureg_src texture_coord = ps.vT[s]; in nine_ff_build_ps() 1435 ureg_MOV(ureg, ureg_writemask(ureg_dst(texture_coord), ureg_dst(ps.vT[s]).WriteMask), ps.vT[s]); in nine_ff_build_ps()
|
/third_party/json/tests/src/ |
H A D | unit-ubjson.cpp | 1902 std::vector<uint8_t> vT = {'[', '$', 'T'}; variable 1903 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vT), "[json.exception.parse_error.110] parse error at byte 4: syntax error while parsing UBJSON value: unexpected end of input", json::parse_error&); 1904 CHECK(json::from_ubjson(vT, true, false).is_discarded()); 1930 std::vector<uint8_t> vT = {'{', '$', 'i', 'i', 1, 'a', 1}; variable 1931 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vT), "[json.exception.parse_error.112] parse error at byte 4: syntax error while parsing UBJSON size: expected '#' after type information; last byte: 0x69", json::parse_error&); 1932 CHECK(json::from_ubjson(vT, true, false).is_discarded());
|
H A D | unit-bjdata.cpp | 2851 std::vector<uint8_t> vT = {'[', '$', 'i', '#', '[', 'i', 2, 'i'}; variable 2852 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vT), "[json.exception.parse_error.110] parse error at byte 9: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 2853 CHECK(json::from_bjdata(vT, true, false).is_discarded()); 2925 std::vector<uint8_t> vT = {'{', '$', 'i', 'i', 1, 'a', 1}; variable 2926 CHECK_THROWS_WITH(_ = json::from_bjdata(vT), "[json.exception.parse_error.112] parse error at byte 4: syntax error while parsing BJData size: expected '#' after type information; last byte: 0x69"); 2927 CHECK(json::from_bjdata(vT, true, false).is_discarded());
|
Completed in 33 milliseconds