Home
last modified time | relevance | path

Searched +full:- +full:v (Results 1 – 25 of 1279) sorted by relevance

12345678910>>...52

/third_party/glslang/Test/baseResults/
Dspv.vulkan100.subgroupPartitioned.comp.out2 ERROR: 0:19: 'subgroup op' : requires SPIR-V 1.3
3 ERROR: 0:21: 'subgroup op' : requires SPIR-V 1.3
4 ERROR: 0:22: 'subgroup op' : requires SPIR-V 1.3
5 ERROR: 0:23: 'subgroup op' : requires SPIR-V 1.3
6 ERROR: 0:24: 'subgroup op' : requires SPIR-V 1.3
7 ERROR: 0:26: 'subgroup op' : requires SPIR-V 1.3
8 ERROR: 0:27: 'subgroup op' : requires SPIR-V 1.3
9 ERROR: 0:28: 'subgroup op' : requires SPIR-V 1.3
10 ERROR: 0:29: 'subgroup op' : requires SPIR-V 1.3
11 ERROR: 0:31: 'subgroup op' : requires SPIR-V 1.3
[all …]
Dspv.vulkan100.subgroupArithmetic.comp.out2 ERROR: 0:19: 'subgroup op' : requires SPIR-V 1.3
3 ERROR: 0:20: 'subgroup op' : requires SPIR-V 1.3
4 ERROR: 0:21: 'subgroup op' : requires SPIR-V 1.3
5 ERROR: 0:22: 'subgroup op' : requires SPIR-V 1.3
6 ERROR: 0:24: 'subgroup op' : requires SPIR-V 1.3
7 ERROR: 0:25: 'subgroup op' : requires SPIR-V 1.3
8 ERROR: 0:26: 'subgroup op' : requires SPIR-V 1.3
9 ERROR: 0:27: 'subgroup op' : requires SPIR-V 1.3
10 ERROR: 0:29: 'subgroup op' : requires SPIR-V 1.3
11 ERROR: 0:30: 'subgroup op' : requires SPIR-V 1.3
[all …]
/third_party/ltp/runtest/
Dnet.nfs5 nfs3_01 nfs01.sh -v 3 -t udp
6 nfs3t_01 nfs01.sh -v 3 -t tcp
7 nfs4_01 nfs01.sh -v 4 -t tcp
8 nfs41_01 nfs01.sh -v 4.1 -t tcp
9 nfs42_01 nfs01.sh -v 4.2 -t tcp
10 nfs3_ipv6_01 nfs01.sh -6 -v 3 -t udp
11 nfs3t_ipv6_01 nfs01.sh -6 -v 3 -t tcp
12 nfs4_ipv6_01 nfs01.sh -6 -v 4 -t tcp
13 nfs41_ipv6_01 nfs01.sh -6 -v 4.1 -t tcp
14 nfs42_ipv6_01 nfs01.sh -6 -v 4.2 -t tcp
[all …]
/third_party/ffmpeg/libavcodec/
Dvaapi_vc1.c2 * VC-1 HW decode acceleration through VA API
4 * Copyright (C) 2008-2009 Splitted-Desktop Systems
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
43 static inline int vc1_has_MVTYPEMB_bitplane(const VC1Context *v) in vc1_has_MVTYPEMB_bitplane() argument
45 if (v->mv_type_is_raw) in vc1_has_MVTYPEMB_bitplane()
47 return v->fcm == PROGRESSIVE && in vc1_has_MVTYPEMB_bitplane()
48 (v->s.pict_type == AV_PICTURE_TYPE_P && !v->p_frame_skipped) && in vc1_has_MVTYPEMB_bitplane()
49 (v->mv_mode == MV_PMODE_MIXED_MV || in vc1_has_MVTYPEMB_bitplane()
50 (v->mv_mode == MV_PMODE_INTENSITY_COMP && in vc1_has_MVTYPEMB_bitplane()
51 v->mv_mode2 == MV_PMODE_MIXED_MV)); in vc1_has_MVTYPEMB_bitplane()
[all …]
Dvc1.c2 * VC-1 and WMV3 decoder common code
4 * Copyright (c) 2006-2007 Konstantin Shishkov
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * VC-1 and WMV3 decoder common code
42 * @name VC-1 Bitplane decoding
94 * @param v VC-1 context for bit reading and logging
98 static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v) in bitplane_decoding() argument
100 GetBitContext *gb = &v->s.gb; in bitplane_decoding()
106 width = v->s.mb_width; in bitplane_decoding()
107 height = v->s.mb_height >> v->field_mode; in bitplane_decoding()
[all …]
Dvc1_block.c2 * VC-1 and WMV3 decoder
4 * Copyright (c) 2006-2007 Konstantin Shishkov
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * VC-1 and WMV3 block decoding routines
53 * @name VC-1 Bitplane decoding
59 static inline void init_block_index(VC1Context *v) in init_block_index() argument
61 MpegEncContext *s = &v->s; in init_block_index()
63 if (v->field_mode && !(v->second_field ^ v->tff)) { in init_block_index()
64 s->dest[0] += s->current_picture_ptr->f->linesize[0]; in init_block_index()
65 s->dest[1] += s->current_picture_ptr->f->linesize[1]; in init_block_index()
[all …]
Dvc1_loopfilter.c2 * VC-1 and WMV3 decoder
4 * Copyright (c) 2006-2007 Konstantin Shishkov
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * VC-1 and WMV3 loopfilter
34 static av_always_inline void vc1_h_overlap_filter(VC1Context *v, int16_t (*left_block)[64], in vc1_h_overlap_filter() argument
40 v->vc1dsp.vc1_h_s_overlap(left_block[2], in vc1_h_overlap_filter()
42 left_fieldtx ^ right_fieldtx ? 16 - 8 * left_fieldtx : 8, in vc1_h_overlap_filter()
43 left_fieldtx ^ right_fieldtx ? 16 - 8 * right_fieldtx : 8, in vc1_h_overlap_filter()
48 v->vc1dsp.vc1_h_s_overlap(right_block[0], in vc1_h_overlap_filter()
56v->vc1dsp.vc1_h_s_overlap(!left_fieldtx && right_fieldtx ? left_block[2] + 8 : left_block[3], in vc1_h_overlap_filter()
[all …]
Dvc1dec.c2 * VC-1 and WMV3 decoder
4 * Copyright (c) 2006-2007 Konstantin Shishkov
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * VC-1 and WMV3 decoder
67 return (get_bits_long(gb, 30) - (1 << 29)) << 1; in get_fp_val()
104 static int vc1_parse_sprites(VC1Context *v, GetBitContext* gb, SpriteData* sd) in vc1_parse_sprites() argument
106 AVCodecContext *avctx = v->s.avctx; in vc1_parse_sprites()
109 for (sprite = 0; sprite <= v->two_sprites; sprite++) { in vc1_parse_sprites()
110 vc1_sprite_parse_transform(gb, sd->coefs[sprite]); in vc1_parse_sprites()
111 if (sd->coefs[sprite][1] || sd->coefs[sprite][3]) in vc1_parse_sprites()
[all …]
/third_party/libxml2/test/
Datt41 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by Slava (GIVC) -->
8 <val o="0" v="53"/>
9 <val o="e08" v="53"/>
10 <val o="1c32" v="53"/>
11 <val o="2a3c" v="53"/>
12 <val o="3835" v="53"/>
13 <val o="4645" v="53"/>
14 <val o="5455" v="53"/>
15 <val o="6265" v="53"/>
[all …]
/third_party/libxml2/result/
Datt41 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by Slava (GIVC) -->
8 <val o="0" v="53"/>
9 <val o="e08" v="53"/>
10 <val o="1c32" v="53"/>
11 <val o="2a3c" v="53"/>
12 <val o="3835" v="53"/>
13 <val o="4645" v="53"/>
14 <val o="5455" v="53"/>
15 <val o="6265" v="53"/>
[all …]
/third_party/libxml2/result/noent/
Datt41 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by Slava (GIVC) -->
8 <val o="0" v="53"/>
9 <val o="e08" v="53"/>
10 <val o="1c32" v="53"/>
11 <val o="2a3c" v="53"/>
12 <val o="3835" v="53"/>
13 <val o="4645" v="53"/>
14 <val o="5455" v="53"/>
15 <val o="6265" v="53"/>
[all …]
/third_party/node/src/
Dnode_http_common.h19 #define HTTP_SPECIAL_HEADERS(V) \ argument
20 V(STATUS, ":status") \
21 V(METHOD, ":method") \
22 V(AUTHORITY, ":authority") \
23 V(SCHEME, ":scheme") \
24 V(PATH, ":path") \
25 V(PROTOCOL, ":protocol")
27 #define HTTP_REGULAR_HEADERS(V) \ argument
28 V(ACCEPT_ENCODING, "accept-encoding") \
29 V(ACCEPT_LANGUAGE, "accept-language") \
[all …]
/third_party/freetype/docs/reference/assets/javascripts/lunr/min/
Dlunr.de.min.js3 * https://github.com/MihaiValentin/lunr-languages
18-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.de.trimmer=e.tr…
/third_party/mesa3d/docs/gallium/
Dpipeline.txt12 primitive ID } System-generated values
15 V V V
16 +-------------------+
18 +-------------------+
20 V V V
29 V V V
30 +------------------------+
34 +------------------------+
36 V V V
40 V V V
[all …]
/third_party/mesa3d/src/freedreno/ir3/
Dir3_disk_cache.c32 * Shader disk-cache implementation.
35 * rely on inter-dependencies between different cache entries:
45 * their draw-pass counterpart, both variants are serialized together.
54 const char *renderer = fd_dev_name(compiler->dev_id); in ir3_disk_cache_init()
66 if (compiler->robust_buffer_access2) in ir3_disk_cache_init()
68 compiler->disk_cache = disk_cache_create(renderer, timestamp, driver_flags); in ir3_disk_cache_init()
75 if (!compiler->disk_cache) in ir3_disk_cache_init_shader_key()
89 nir_serialize(&blob, shader->nir, true); in ir3_disk_cache_init_shader_key()
93 _mesa_sha1_update(&ctx, &shader->api_wavesize, in ir3_disk_cache_init_shader_key()
94 sizeof(shader->api_wavesize)); in ir3_disk_cache_init_shader_key()
[all …]
Dir3_shader.c62 fixup_regfootprint(struct ir3_shader_variant *v) in fixup_regfootprint() argument
66 for (i = 0; i < v->inputs_count; i++) { in fixup_regfootprint()
71 if (v->inputs[i].bary) in fixup_regfootprint()
77 if (v->inputs[i].regid >= regid(48, 0)) in fixup_regfootprint()
80 if (v->inputs[i].compmask) { in fixup_regfootprint()
81 unsigned n = util_last_bit(v->inputs[i].compmask) - 1; in fixup_regfootprint()
82 int32_t regid = v->inputs[i].regid + n; in fixup_regfootprint()
83 if (v->inputs[i].half) { in fixup_regfootprint()
84 if (!v->mergedregs) { in fixup_regfootprint()
85 v->info.max_half_reg = MAX2(v->info.max_half_reg, regid >> 2); in fixup_regfootprint()
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_hv_accept.cpp36 * v->base_ir will be set to point to each statement just before iterating
39 * list), so v->base_ir will be left alone.
47 visit_list_elements(ir_hierarchical_visitor *v, exec_list *l, in visit_list_elements() argument
50 ir_instruction *prev_base_ir = v->base_ir; in visit_list_elements()
54 v->base_ir = ir; in visit_list_elements()
55 ir_visitor_status s = ir->accept(v); in visit_list_elements()
61 v->base_ir = prev_base_ir; in visit_list_elements()
68 ir_rvalue::accept(ir_hierarchical_visitor *v) in accept() argument
70 return v->visit(this); in accept()
75 ir_variable::accept(ir_hierarchical_visitor *v) in accept() argument
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_vec3.inl32 // -- Implicit basic constructors --
45 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec3<T, P>::tvec3(tvec3<T, P> const & v) argument
46 : x(v.x), y(v.y), z(v.z)
52 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec3<T, P>::tvec3(tvec3<T, Q> const & v) argument
53 : x(v.x), y(v.y), z(v.z)
56 // -- Explicit basic constructors --
72 // -- Conversion scalar constructors --
90 // -- Conversion vector constructors --
126 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec3<T, P>::tvec3(tvec3<U, Q> const & v) : argument
127 x(static_cast<T>(v.x)),
[all …]
/third_party/rust/crates/serde/serde/src/private/
Dde.rs20 pub fn missing_field<'de, V, E>(field: &'static str) -> Result<V, E> in missing_field() argument
22 V: Deserialize<'de>, in missing_field()
33 fn deserialize_any<V>(self, _visitor: V) -> Result<V::Value, E> in missing_field()
35 V: Visitor<'de>, in missing_field()
40 fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, E> in missing_field()
42 V: Visitor<'de>, in missing_field()
59 pub fn borrow_cow_str<'de: 'a, 'a, D, R>(deserializer: D) -> Result<R, D::Error> in borrow_cow_str()
69 fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { in borrow_cow_str()
73 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in borrow_cow_str()
77 Ok(Cow::Owned(v.to_owned())) in borrow_cow_str()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DVector.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
27 Vector Vector::operator-() const in operator -()
29 return Vector(-x, -y, -z); in operator -()
32 Vector &Vector::operator+=(const Vector &v) in operator +=() argument
34 x += v.x; in operator +=()
35 y += v.y; in operator +=()
36 z += v.z; in operator +=()
41 Vector &Vector::operator-=(const Vector &v) in operator -=() argument
43 x -= v.x; in operator -=()
44 y -= v.y; in operator -=()
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/
Dbuiltin-fp-unop.c11 static void test_too_many_args(double v) in test_too_many_args() argument
13 __builtin_isfinite(v, v); in test_too_many_args()
14 __builtin_isinf(v, v); in test_too_many_args()
15 __builtin_isinf_sign(v, v); in test_too_many_args()
16 __builtin_isnan(v, v); in test_too_many_args()
17 __builtin_isnormal(v, v); in test_too_many_args()
18 __builtin_signbit(v, v); in test_too_many_args()
21 static void test_non_float(int v) in test_non_float() argument
23 __builtin_isfinite(v); in test_non_float()
24 __builtin_isinf(v); in test_non_float()
[all …]
/third_party/openGLES/extensions/OML/
DOML_resample.txt90 - (3.6.1, p. 75 "Pixel Storage Modes")
95 -------------- ---- ------------- -----------
104 - (3.6.4, p. 88 "Rasterization of Pixel Rectangles")
106 - Modify the new subsection "Conversion to Uniform Sampling"
141 D_i,0 = S_i-1,0
147 - (figure 3.9, introduced by OML_subsample, is unchanged)
168 - Add new figure 3.10, following the new figure 3.9 defined in the
178 V V V V V V V V V V V V
189 V V V V V V V V V V V V V V V V
215 D_i,0 = S_i,0 i == <width>-1 (last pixel)
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/OML/
DOML_resample.txt90 - (3.6.1, p. 75 "Pixel Storage Modes")
95 -------------- ---- ------------- -----------
104 - (3.6.4, p. 88 "Rasterization of Pixel Rectangles")
106 - Modify the new subsection "Conversion to Uniform Sampling"
141 D_i,0 = S_i-1,0
147 - (figure 3.9, introduced by OML_subsample, is unchanged)
168 - Add new figure 3.10, following the new figure 3.9 defined in the
178 V V V V V V V V V V V V
189 V V V V V V V V V V V V V V V V
215 D_i,0 = S_i,0 i == <width>-1 (last pixel)
[all …]
/third_party/python/Python/
Dast_opt.c24 node->kind = Constant_kind; in make_const()
25 node->v.Constant.kind = NULL; in make_const()
26 node->v.Constant.value = val; in make_const()
33 unary_not(PyObject *v) in unary_not() argument
35 int r = PyObject_IsTrue(v); in unary_not()
44 expr_ty arg = node->v.UnaryOp.operand; in fold_unaryop()
46 if (arg->kind != Constant_kind) { in fold_unaryop()
48 if (node->v.UnaryOp.op == Not && arg->kind == Compare_kind && in fold_unaryop()
49 asdl_seq_LEN(arg->v.Compare.ops) == 1) { in fold_unaryop()
55 cmpop_ty op = asdl_seq_GET(arg->v.Compare.ops, 0); in fold_unaryop()
[all …]
Dast.c54 if (!validate_expr(state, comp->target, Store) || in validate_comprehension()
55 !validate_expr(state, comp->iter, Load) || in validate_comprehension()
56 !validate_exprs(state, comp->ifs, Load, 0)) in validate_comprehension()
67 if (!validate_expr(state, (asdl_seq_GET(keywords, i))->value, Load)) in validate_keywords()
78 if (arg->annotation && !validate_expr(state, arg->annotation, Load)) in validate_args()
102 if (!validate_args(state, args->posonlyargs) || !validate_args(state, args->args)) { in validate_arguments()
105 if (args->vararg && args->vararg->annotation in validate_arguments()
106 && !validate_expr(state, args->vararg->annotation, Load)) { in validate_arguments()
109 if (!validate_args(state, args->kwonlyargs)) in validate_arguments()
111 if (args->kwarg && args->kwarg->annotation in validate_arguments()
[all …]

12345678910>>...52