/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_gs.c | 73 return (shader->fetched_prim_count == shader->vector_length || shader->num_invocations > 1); in draw_gs_should_flush() 312 for (i = 0; i < shader->vector_length; ++i) { in llvm_fetch_gs_outputs() 313 int prims = shader->llvm_emitted_primitives[i + (stream * shader->vector_length)]; in llvm_fetch_gs_outputs() 317 for (i = 0; i < shader->vector_length; ++i) { in llvm_fetch_gs_outputs() 318 total_verts += shader->llvm_emitted_vertices[i + (stream * shader->vector_length)]; in llvm_fetch_gs_outputs() 322 for (i = 0; i < shader->vector_length - 1; ++i) { in llvm_fetch_gs_outputs() 323 int current_verts = shader->llvm_emitted_vertices[i + (stream * shader->vector_length)]; in llvm_fetch_gs_outputs() 324 int next_verts = shader->llvm_emitted_vertices[i + 1 + (stream * shader->vector_length)]; in llvm_fetch_gs_outputs() 363 for (i = 0; i < shader->vector_length; ++i) { in llvm_fetch_gs_outputs() 364 int num_prims = shader->llvm_emitted_primitives[i + (stream * shader->vector_length)]; in llvm_fetch_gs_outputs() [all...] |
H A D | draw_tess.h | 61 unsigned vector_length; member 89 unsigned vector_length; member
|
H A D | draw_llvm.c | 368 unsigned vector_length, in create_gs_jit_context_type() 395 vector_length), 0); in create_gs_jit_context_type() 397 vector_length), 0); in create_gs_jit_context_type() 548 unsigned vector_length, in create_tcs_jit_context_type() 649 unsigned vector_length, in create_tes_jit_context_type() 1242 int vector_length = soa_type.length; in store_aos_array() local 1247 for (i = 0; i < vector_length; i++) { in store_aos_array() 1277 for (i = 0; i < vector_length; i++) { in store_aos_array() 1290 for (i = 0; i < vector_length; i++) { in store_aos_array() 1927 const int vector_length in draw_llvm_generate() local 367 create_gs_jit_context_type(struct gallivm_state *gallivm, unsigned vector_length, LLVMTypeRef texture_type, LLVMTypeRef sampler_type, LLVMTypeRef image_type, const char *struct_name) create_gs_jit_context_type() argument 547 create_tcs_jit_context_type(struct gallivm_state *gallivm, unsigned vector_length, LLVMTypeRef texture_type, LLVMTypeRef sampler_type, LLVMTypeRef image_type, const char *struct_name) create_tcs_jit_context_type() argument 648 create_tes_jit_context_type(struct gallivm_state *gallivm, unsigned vector_length, LLVMTypeRef texture_type, LLVMTypeRef sampler_type, LLVMTypeRef image_type, const char *struct_name) create_tes_jit_context_type() argument 2767 unsigned vector_length = variant->shader->base.vector_length; draw_gs_llvm_generate() local 3355 unsigned vector_length = variant->shader->base.vector_length; draw_tcs_llvm_generate() local 3928 unsigned vector_length = variant->shader->base.vector_length; draw_tes_llvm_generate() local [all...] |
H A D | draw_gs.h | 95 unsigned vector_length; member
|
H A D | draw_tess.c | 449 tcs->vector_length = 4; in draw_create_tess_ctrl_shader() 555 tes->vector_length = 4; in draw_create_tess_eval_shader()
|
/third_party/backends/frontend/ |
H A D | scanimage.c | 808 SANE_Word * vector, size_t vector_length) in parse_vector() 815 memset (vector, 0, vector_length * sizeof (SANE_Word)); in parse_vector() 834 if (index < 0 || index >= (int) vector_length) in parse_vector() 838 prog_name, opt->name, index, (long) vector_length - 1); in parse_vector() 884 for (i = 0; i < (int) vector_length; ++i) in parse_vector() 1077 size_t vector_length; in process_backend_option() local 1135 vector_length = opt->size / sizeof (SANE_Word); in process_backend_option() 1136 if (vector_size < vector_length) in process_backend_option() 1138 vector_size = vector_length; in process_backend_option() 1139 vector = realloc (vector, vector_length * sizeo in process_backend_option() 807 parse_vector(const SANE_Option_Descriptor * opt, const char *str, SANE_Word * vector, size_t vector_length) parse_vector() argument [all...] |
/third_party/libinput/src/ |
H A D | evdev-mt-touchpad-gestures.c | 365 double vector_decay, vector_length, slope; in tp_gesture_apply_scroll_constraints() local 405 vector_length = hypot(vector.x, vector.y); in tp_gesture_apply_scroll_constraints() 427 if (slope >= DEGREE_30 && vector_length > MIN_VECTOR) { in tp_gesture_apply_scroll_constraints() 438 if (slope < DEGREE_60 && vector_length > MIN_VECTOR) { in tp_gesture_apply_scroll_constraints() 464 if (vector_length > 5.0 && slope < 1.73 && slope >= 0.57) { in tp_gesture_apply_scroll_constraints()
|
H A D | evdev-mt-touchpad-buttons.c | 500 double vector_length; in tp_button_check_for_movement() local 521 vector_length = hypot(mm.x, mm.y); in tp_button_check_for_movement() 523 if (vector_length > 5.0 /* mm */) { in tp_button_check_for_movement()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir.cpp | 1902 ir_swizzle::create(ir_rvalue *val, const char *str, unsigned vector_length) in create() argument 1963 if ((swiz_idx[i] < 0) || (swiz_idx[i] >= (int) vector_length)) in create()
|
H A D | ir.h | 2013 static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length);
|
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 646 void Simulator::SetVectorLengthInBits(unsigned vector_length) { in Simulator() argument 647 VIXL_ASSERT((vector_length >= kZRegMinSize) && in Simulator() 648 (vector_length <= kZRegMaxSize)); in Simulator() 649 VIXL_ASSERT((vector_length % kZRegMinSize) == 0); in Simulator() 650 vector_length_ = vector_length; in Simulator()
|
H A D | simulator-aarch64.h | 3005 void SetVectorLengthInBits(unsigned vector_length);
|