/external/clang/test/CodeGen/ |
D | builtins-ppc-altivec.c | 22 vector bool int vbi = { 1, 0, 1, 0 }; variable 163 res_vi = vec_add(vbi, vi); in test1() 167 res_vi = vec_add(vi, vbi); in test1() 175 res_vui = vec_add(vbi, vui); in test1() 179 res_vui = vec_add(vui, vbi); in test1() 239 res_vi = vec_vadduwm(vbi, vi); in test1() 243 res_vi = vec_vadduwm(vi, vbi); in test1() 251 res_vui = vec_vadduwm(vbi, vui); in test1() 255 res_vui = vec_vadduwm(vui, vbi); in test1() 325 res_vi = vec_adds(vbi, vi); in test1() [all …]
|
D | builtins-systemz-zvector.c | 18 volatile vector bool int vbi; variable 92 ui = vec_extract(vbi, idx); in test_core() 119 vui = vec_insert(ui, vbi, idx); in test_core() 184 vbi = vec_perm(vbi, vbi, vuc); in test_core() 241 vsi = vec_sel(vsi, vsi, vbi); in test_core() 243 vui = vec_sel(vui, vui, vbi); in test_core() 244 vbi = vec_sel(vbi, vbi, vui); in test_core() 245 vbi = vec_sel(vbi, vbi, vbi); in test_core() 263 vbi = vec_gather_element(vbi, vui, cptrui, 0); in test_core() 264 vbi = vec_gather_element(vbi, vui, cptrui, 1); in test_core() [all …]
|
D | builtins-systemz-zvector-error.c | 18 volatile vector bool int vbi; variable 125 vbi = vec_gather_element(vbi, vui, cptrui, idx); // expected-error {{no matching function}} in test_core() 128 vbi = vec_gather_element(vbi, vui, cptrui, -1); // expected-error {{no matching function}} in test_core() 131 vbi = vec_gather_element(vbi, vui, cptrui, 4); // expected-error {{no matching function}} in test_core() 189 vec_scatter_element(vbi, vui, ptrui, idx); // expected-error {{no matching function}} in test_core() 192 vec_scatter_element(vbi, vui, ptrui, -1); // expected-error {{no matching function}} in test_core() 195 vec_scatter_element(vbi, vui, ptrui, 4); // expected-error {{no matching function}} in test_core() 369 vbi = vec_splat(vbi, idx); // expected-error {{no matching function}} in test_core() 372 vbi = vec_splat(vbi, -1); // expected-error {{no matching function}} in test_core() 375 vbi = vec_splat(vbi, 4); // expected-error {{no matching function}} in test_core()
|
D | builtins-ppc-p8vector.c | 28 vector bool int vbi = {0, -1, -1, 0}; variable 126 res_vbi = vec_mergee(vbi, vbi); in test1() 140 res_vbi = vec_mergeo(vbi, vbi); in test1() 289 res_vsi = vec_eqv(vbi, vbi); in test1() 1108 res_vbll = vec_unpackh(vbi); in test1() 1119 res_vbll = vec_unpackl(vbi); in test1() 1157 res_vbll = vec_vupkhsw(vbi); in test1() 1167 res_vbll = vec_vupklsw(vbi); in test1() 1257 res_vsi = vec_nand(vbi, vbi); in test1() 1379 res_vsi = vec_orc(vsi, vbi); in test1() [all …]
|
D | builtins-ppc-vsx.c | 17 vector bool int vbi = { 0, 1, 0, 1 }; variable 339 res_vbi = vec_vsx_ld(0, &vbi); in test1() 425 vec_vsx_st(vbi, 0, &res_vbi); in test1() 429 vec_vsx_st(vbi, 0, res_aui); in test1() 433 vec_vsx_st(vbi, 0, res_asi); in test1()
|
/external/libwebsockets/lib/roles/mqtt/ |
D | primitives.c | 67 lws_mqtt_vbi_init(lws_mqtt_vbi *vbi) in lws_mqtt_vbi_init() argument 69 vbi->value = 0; in lws_mqtt_vbi_init() 70 vbi->consumed = 0; in lws_mqtt_vbi_init() 71 vbi->budget = 4; in lws_mqtt_vbi_init() 75 lws_mqtt_2byte_init(lws_mqtt_vbi *vbi) in lws_mqtt_2byte_init() argument 77 vbi->value = 0; in lws_mqtt_2byte_init() 78 vbi->consumed = 0; in lws_mqtt_2byte_init() 79 vbi->budget = 2; in lws_mqtt_2byte_init() 83 lws_mqtt_4byte_init(lws_mqtt_vbi *vbi) in lws_mqtt_4byte_init() argument 85 vbi->value = 0; in lws_mqtt_4byte_init() [all …]
|
D | private-lib-roles-mqtt.h | 69 lws_mqtt_mb_first(lws_mqtt_vbi *vbi) { return !vbi->consumed; } in lws_mqtt_mb_first() argument 104 lws_mqtt_vbi_init(lws_mqtt_vbi *vbi); 107 lws_mqtt_2byte_init(lws_mqtt_vbi *vbi); 110 lws_mqtt_4byte_init(lws_mqtt_vbi *vbi); 113 lws_mqtt_vbi_r(lws_mqtt_vbi *vbi, const uint8_t **in, size_t *len); 116 lws_mqtt_mb_parse(lws_mqtt_vbi *vbi, const uint8_t **in, size_t *len);
|
/external/llvm-project/clang/test/CodeGen/ |
D | builtins-ppc-altivec.c | 22 vector bool int vbi = { 1, 0, 1, 0 }; variable 201 res_vi = vec_add(vbi, vi); in test1() 205 res_vi = vec_add(vi, vbi); in test1() 213 res_vui = vec_add(vbi, vui); in test1() 217 res_vui = vec_add(vui, vbi); in test1() 293 res_vi = vec_vadduwm(vbi, vi); in test1() 297 res_vi = vec_vadduwm(vi, vbi); in test1() 305 res_vui = vec_vadduwm(vbi, vui); in test1() 309 res_vui = vec_vadduwm(vui, vbi); in test1() 379 res_vi = vec_adds(vbi, vi); in test1() [all …]
|
D | builtins-ppc-p8vector.c | 28 vector bool int vbi = {0, -1, -1, 0}; variable 119 res_vbi = vec_mergee(vbi, vbi); in test1() 153 res_vbi = vec_mergeo(vbi, vbi); in test1() 298 res_vsi = vec_eqv(vbi, vbi); in test1() 1172 res_vbll = vec_unpackh(vbi); in test1() 1183 res_vbll = vec_unpackl(vbi); in test1() 1221 res_vbll = vec_vupkhsw(vbi); in test1() 1231 res_vbll = vec_vupklsw(vbi); in test1() 1321 res_vsi = vec_nand(vbi, vbi); in test1() 1461 res_vsi = vec_orc(vsi, vbi); in test1() [all …]
|
/external/llvm-project/clang/test/CodeGen/SystemZ/ |
D | builtins-systemz-zvector.c | 21 volatile vector bool int vbi; variable 112 ui = vec_extract(vbi, idx); in test_core() 152 vui = vec_insert(ui, vbi, idx); in test_core() 248 vbi = vec_perm(vbi, vbi, vuc); in test_core() 344 vbi = vec_reve(vbi); in test_core() 381 vsi = vec_sel(vsi, vsi, vbi); in test_core() 385 vui = vec_sel(vui, vui, vbi); in test_core() 387 vbi = vec_sel(vbi, vbi, vui); in test_core() 389 vbi = vec_sel(vbi, vbi, vbi); in test_core() 424 vbi = vec_gather_element(vbi, vui, cptrui, 0); in test_core() [all …]
|
D | builtins-systemz-zvector-error.c | 18 volatile vector bool int vbi; variable 125 vbi = vec_gather_element(vbi, vui, cptrui, idx); // expected-error {{no matching function}} in test_core() 128 vbi = vec_gather_element(vbi, vui, cptrui, -1); // expected-error {{no matching function}} in test_core() 131 vbi = vec_gather_element(vbi, vui, cptrui, 4); // expected-error {{no matching function}} in test_core() 189 vec_scatter_element(vbi, vui, ptrui, idx); // expected-error {{no matching function}} in test_core() 192 vec_scatter_element(vbi, vui, ptrui, -1); // expected-error {{no matching function}} in test_core() 195 vec_scatter_element(vbi, vui, ptrui, 4); // expected-error {{no matching function}} in test_core() 358 vbi = vec_splat(vbi, idx); // expected-error {{no matching function}} in test_core() 361 vbi = vec_splat(vbi, -1); // expected-error {{no matching function}} in test_core() 364 vbi = vec_splat(vbi, 4); // expected-error {{no matching function}} in test_core()
|
D | builtins-systemz-zvector2.c | 21 volatile vector bool int vbi; variable 141 vf = vec_sel(vf, vf, vbi); in test_core() 275 vbi = vec_cmpeq(vf, vf); in test_compare() 282 vbi = vec_cmpge(vf, vf); in test_compare() 289 vbi = vec_cmpgt(vf, vf); in test_compare() 296 vbi = vec_cmple(vf, vf); in test_compare() 303 vbi = vec_cmplt(vf, vf); in test_compare() 508 vbi = vec_nand(vbi, vbi); in test_integer() 537 vbi = vec_orc(vbi, vbi); in test_integer() 566 vbi = vec_eqv(vbi, vbi); in test_integer() [all …]
|
D | builtins-systemz-zvector2-constrained.c | 16 volatile vector bool int vbi; variable 170 vbi = vec_cmpeq(vf, vf); in test_compare() 177 vbi = vec_cmpge(vf, vf); in test_compare() 184 vbi = vec_cmpgt(vf, vf); in test_compare() 191 vbi = vec_cmple(vf, vf); in test_compare() 198 vbi = vec_cmplt(vf, vf); in test_compare() 531 vbi = vec_fp_test_data_class(vf, 0, &cc); in test_float() 534 vbi = vec_fp_test_data_class(vf, 4095, &cc); in test_float()
|
D | builtins-systemz-zvector2-error.c | 18 volatile vector bool int vbi; variable 135 …vbi = vec_fp_test_data_class(vf, idx, &cc); // expected-error {{no matching function}} expected-e… in test_float() 138 …vbi = vec_fp_test_data_class(vf, -1, &cc); // expected-error {{no matching function}} expected-e… in test_float() 141 …vbi = vec_fp_test_data_class(vf, 4096, &cc); // expected-error {{no matching function}} expected-e… in test_float()
|
D | builtins-systemz-zvector3.c | 21 volatile vector bool int vbi; variable 403 vuc = vec_search_string_cc(vbi, vbi, vuc, &cc); in test_string() 431 vuc = vec_search_string_until_zero_cc(vbi, vbi, vuc, &cc); in test_string()
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | test_VIDIOC_FMT.c | 334 format.fmt.vbi.sampling_rate, in do_get_formats() 335 format.fmt.vbi.offset, in do_get_formats() 336 format.fmt.vbi.samples_per_line, in do_get_formats() 337 format.fmt.vbi.sample_format, in do_get_formats() 338 format.fmt.vbi.start[0], in do_get_formats() 339 format.fmt.vbi.start[1], in do_get_formats() 340 format.fmt.vbi.count[0], in do_get_formats() 341 format.fmt.vbi.count[1], in do_get_formats() 342 format.fmt.vbi.flags, in do_get_formats() 343 format.fmt.vbi.reserved[0], in do_get_formats() [all …]
|
/external/strace/tests-m32/ |
D | ioctl_v4l2.c | 128 f->fmt.vbi.sampling_rate = 0x3d9b5b79; in init_v4l2_format() 129 f->fmt.vbi.offset = 0x055b3a09; in init_v4l2_format() 130 f->fmt.vbi.samples_per_line = 0xf176d436; in init_v4l2_format() 132 f->fmt.vbi.sample_format = magic; in init_v4l2_format() 134 f->fmt.vbi.sample_format = pf_magic; in init_v4l2_format() 135 f->fmt.vbi.start[0] = 0x9858e2eb; in init_v4l2_format() 136 f->fmt.vbi.start[1] = 0x8a4dc8c1; in init_v4l2_format() 137 f->fmt.vbi.count[0] = 0x4bcf36a3; in init_v4l2_format() 138 f->fmt.vbi.count[1] = 0x97dff65f; in init_v4l2_format() 139 f->fmt.vbi.flags = V4L2_VBI_INTERLACED; in init_v4l2_format() [all …]
|
/external/strace/tests/ |
D | ioctl_v4l2.c | 128 f->fmt.vbi.sampling_rate = 0x3d9b5b79; in init_v4l2_format() 129 f->fmt.vbi.offset = 0x055b3a09; in init_v4l2_format() 130 f->fmt.vbi.samples_per_line = 0xf176d436; in init_v4l2_format() 132 f->fmt.vbi.sample_format = magic; in init_v4l2_format() 134 f->fmt.vbi.sample_format = pf_magic; in init_v4l2_format() 135 f->fmt.vbi.start[0] = 0x9858e2eb; in init_v4l2_format() 136 f->fmt.vbi.start[1] = 0x8a4dc8c1; in init_v4l2_format() 137 f->fmt.vbi.count[0] = 0x4bcf36a3; in init_v4l2_format() 138 f->fmt.vbi.count[1] = 0x97dff65f; in init_v4l2_format() 139 f->fmt.vbi.flags = V4L2_VBI_INTERLACED; in init_v4l2_format() [all …]
|
/external/strace/tests-mx32/ |
D | ioctl_v4l2.c | 128 f->fmt.vbi.sampling_rate = 0x3d9b5b79; in init_v4l2_format() 129 f->fmt.vbi.offset = 0x055b3a09; in init_v4l2_format() 130 f->fmt.vbi.samples_per_line = 0xf176d436; in init_v4l2_format() 132 f->fmt.vbi.sample_format = magic; in init_v4l2_format() 134 f->fmt.vbi.sample_format = pf_magic; in init_v4l2_format() 135 f->fmt.vbi.start[0] = 0x9858e2eb; in init_v4l2_format() 136 f->fmt.vbi.start[1] = 0x8a4dc8c1; in init_v4l2_format() 137 f->fmt.vbi.count[0] = 0x4bcf36a3; in init_v4l2_format() 138 f->fmt.vbi.count[1] = 0x97dff65f; in init_v4l2_format() 139 f->fmt.vbi.flags = V4L2_VBI_INTERLACED; in init_v4l2_format() [all …]
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_vbo.c | 74 const unsigned vbi = ve->vertex_buffer_index; in nv50_vertex_state_create() local 101 if (so->vb_access_size[vbi] < (ve->src_offset + size)) in nv50_vertex_state_create() 102 so->vb_access_size[vbi] = ve->src_offset + size; in nv50_vertex_state_create() 109 transkey.element[j].input_buffer = vbi; in nv50_vertex_state_create() 119 so->instance_bufs |= 1 << vbi; in nv50_vertex_state_create() 120 if (ve->instance_divisor < so->min_instance_div[vbi]) in nv50_vertex_state_create() 121 so->min_instance_div[vbi] = ve->instance_divisor; in nv50_vertex_state_create() 186 nv50_user_vbuf_range(struct nv50_context *nv50, unsigned vbi, in nv50_user_vbuf_range() argument 189 assert(vbi < PIPE_MAX_ATTRIBS); in nv50_user_vbuf_range() 190 if (unlikely(nv50->vertex->instance_bufs & (1 << vbi))) { in nv50_user_vbuf_range() [all …]
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_vbo.c | 78 const unsigned vbi = ve->vertex_buffer_index; in nvc0_vertex_state_create() local 106 if (so->vb_access_size[vbi] < (ve->src_offset + size)) in nvc0_vertex_state_create() 107 so->vb_access_size[vbi] = ve->src_offset + size; in nvc0_vertex_state_create() 111 so->instance_bufs |= 1 << vbi; in nvc0_vertex_state_create() 112 if (ve->instance_divisor < so->min_instance_div[vbi]) in nvc0_vertex_state_create() 113 so->min_instance_div[vbi] = ve->instance_divisor; in nvc0_vertex_state_create() 126 transkey.element[j].input_buffer = vbi; in nvc0_vertex_state_create() 202 nvc0_user_vbuf_range(struct nvc0_context *nvc0, int vbi, in nvc0_user_vbuf_range() argument 205 if (unlikely(nvc0->vertex->instance_bufs & (1 << vbi))) { in nvc0_user_vbuf_range() 206 const uint32_t div = nvc0->vertex->min_instance_div[vbi]; in nvc0_user_vbuf_range() [all …]
|
/external/clang/test/SemaCXX/ |
D | altivec.cpp | 13 vector bool int vbi; in test_vec_step() local 28 int res9[vec_step(vbi) == 4 ? 1 : -1]; in test_vec_step()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | altivec.cpp | 13 vector bool int vbi; in test_vec_step() local 28 int res9[vec_step(vbi) == 4 ? 1 : -1]; in test_vec_step()
|
/external/strace/ |
D | v4l2.c | 287 f->fmt.vbi.sampling_rate, f->fmt.vbi.offset, in print_v4l2_format_fmt() 288 f->fmt.vbi.samples_per_line); in print_v4l2_format_fmt() 289 print_pixelformat(f->fmt.vbi.sample_format, v4l2_pix_fmts); in print_v4l2_format_fmt() 291 f->fmt.vbi.start[0], f->fmt.vbi.start[1], in print_v4l2_format_fmt() 292 f->fmt.vbi.count[0], f->fmt.vbi.count[1]); in print_v4l2_format_fmt() 294 printxval(v4l2_vbi_flags, f->fmt.vbi.flags, "V4L2_VBI_???"); in print_v4l2_format_fmt()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_state.c | 439 struct pipe_vertex_buffer *vbi = &so->vb[idx]; in etna_set_vertex_buffers() local 441 assert(!vbi->is_user_buffer); /* XXX support user_buffer using in etna_set_vertex_buffers() 444 if (vbi->buffer.resource) { /* GPU buffer */ in etna_set_vertex_buffers() 445 cs->FE_VERTEX_STREAM_BASE_ADDR.bo = etna_resource(vbi->buffer.resource)->bo; in etna_set_vertex_buffers() 446 cs->FE_VERTEX_STREAM_BASE_ADDR.offset = vbi->buffer_offset; in etna_set_vertex_buffers() 449 FE_VERTEX_STREAM_CONTROL_VERTEX_STRIDE(vbi->stride); in etna_set_vertex_buffers()
|