/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_state_derived.c | 48 struct vertex_info vinfo; in calculate_vertex_layout() local 54 memset(&vinfo, 0, sizeof(vinfo)); in calculate_vertex_layout() 87 draw_emit_vertex_attr(&vinfo, EMIT_4F, src); in calculate_vertex_layout() 88 vinfo.hwfmt[0] |= S4_VFMT_XYZW; in calculate_vertex_layout() 89 vinfo.attrib[0].emit = EMIT_4F; in calculate_vertex_layout() 91 draw_emit_vertex_attr(&vinfo, EMIT_3F, src); in calculate_vertex_layout() 92 vinfo.hwfmt[0] |= S4_VFMT_XYZ; in calculate_vertex_layout() 93 vinfo.attrib[0].emit = EMIT_3F; in calculate_vertex_layout() 100 draw_emit_vertex_attr(&vinfo, EMIT_1 in calculate_vertex_layout() [all...] |
H A D | i915_prim_emit.c | 66 const struct vertex_info *vinfo = &i915->current.vertex_info; in emit_hw_vertex() local 72 for (i = 0; i < vinfo->num_attribs; i++) { in emit_hw_vertex() 73 const uint32_t j = vinfo->attrib[i].src_index; in emit_hw_vertex() 75 switch (vinfo->attrib[i].emit) { in emit_hw_vertex() 114 assert(count == vinfo->size); in emit_hw_vertex()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_vertex.c | 43 * vinfo->size field. 46 draw_compute_vertex_size(struct vertex_info *vinfo) in draw_compute_vertex_size() argument 50 vinfo->size = 0; in draw_compute_vertex_size() 51 for (i = 0; i < vinfo->num_attribs; i++) in draw_compute_vertex_size() 52 vinfo->size += draw_translate_vinfo_size(vinfo->attrib[i].emit); in draw_compute_vertex_size() 54 assert(vinfo->size % 4 == 0); in draw_compute_vertex_size() 56 vinfo->size /= 4; in draw_compute_vertex_size() 61 draw_dump_emitted_vertex(const struct vertex_info *vinfo, const uint8_t *data) in draw_dump_emitted_vertex() argument 65 for (i = 0; i < vinfo in draw_dump_emitted_vertex() [all...] |
H A D | draw_vertex.h | 113 draw_emit_vertex_attr(struct vertex_info *vinfo, in draw_emit_vertex_attr() argument 117 const uint n = vinfo->num_attribs; in draw_emit_vertex_attr() 125 assert(n < ARRAY_SIZE(vinfo->attrib)); in draw_emit_vertex_attr() 126 vinfo->attrib[n].emit = emit; in draw_emit_vertex_attr() 127 vinfo->attrib[n].src_index = src_index; in draw_emit_vertex_attr() 128 vinfo->num_attribs++; in draw_emit_vertex_attr() 133 extern void draw_compute_vertex_size(struct vertex_info *vinfo); 135 void draw_dump_emitted_vertex(const struct vertex_info *vinfo,
|
H A D | draw_pt_emit.c | 46 const struct vertex_info *vinfo; member 59 const struct vertex_info *vinfo; in draw_pt_emit_prepare() local 79 emit->vinfo = vinfo = draw->render->get_vertex_info(draw->render); in draw_pt_emit_prepare() 84 for (i = 0; i < vinfo->num_attribs; i++) { in draw_pt_emit_prepare() 88 unsigned src_offset = vinfo->attrib[i].src_index * 4 * sizeof(float); in draw_pt_emit_prepare() 90 output_format = draw_translate_vinfo_format(vinfo->attrib[i].emit); in draw_pt_emit_prepare() 91 emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit); in draw_pt_emit_prepare() 96 if (vinfo->attrib[i].emit == EMIT_1F_PSIZE) { in draw_pt_emit_prepare() 100 else if (vinfo in draw_pt_emit_prepare() [all...] |
H A D | draw_pipe_vbuf.c | 56 const struct vertex_info *vinfo; member 131 if (0) draw_dump_emitted_vertex(vbuf->vinfo, (uint8_t *)vbuf->vertex_ptr); in emit_vertex() 191 const struct vertex_info *vinfo; in vbuf_start_prim() local 203 vbuf->vinfo = vbuf->render->get_vertex_info(vbuf->render); in vbuf_start_prim() 204 vinfo = vbuf->vinfo; in vbuf_start_prim() 205 vbuf->vertex_size = vinfo->size * sizeof(float); in vbuf_start_prim() 211 for (i = 0; i < vinfo->num_attribs; i++) { in vbuf_start_prim() 215 unsigned src_offset = (vinfo->attrib[i].src_index * 4 * sizeof(float)); in vbuf_start_prim() 217 output_format = draw_translate_vinfo_format(vinfo in vbuf_start_prim() [all...] |
H A D | draw_pt_fetch_shade_emit.c | 63 const struct vertex_info *vinfo; member 77 const struct vertex_info *vinfo; in fse_prepare() local 88 fse->vinfo = vinfo = draw->render->get_vertex_info(draw->render); in fse_prepare() 90 fse->key.output_stride = vinfo->size * 4; in fse_prepare() 91 fse->key.nr_outputs = vinfo->num_attribs; in fse_prepare() 127 for (unsigned i = 0; i < vinfo->num_attribs; i++) { in fse_prepare() 128 unsigned emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit); in fse_prepare() 137 fse->key.element[i].out.format = vinfo->attrib[i].emit; in fse_prepare() 138 fse->key.element[i].out.vs_output = vinfo in fse_prepare() [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_derived.c | 52 struct vertex_info *vinfo = &llvmpipe->vertex_info; in compute_vertex_info() local 78 vinfo->num_attribs = 0; in compute_vertex_info() 83 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in compute_vertex_info() 96 llvmpipe->color_slot[idx] = (int)vinfo->num_attribs; in compute_vertex_info() 100 llvmpipe->face_slot = (int)vinfo->num_attribs; in compute_vertex_info() 101 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in compute_vertex_info() 110 llvmpipe->viewport_index_slot = (int)vinfo->num_attribs; in compute_vertex_info() 111 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in compute_vertex_info() 113 llvmpipe->layer_slot = (int)vinfo->num_attribs; in compute_vertex_info() 114 draw_emit_vertex_attr(vinfo, EMIT_4 in compute_vertex_info() [all...] |
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_state_derived.c | 68 struct vertex_info *vinfo = &softpipe->vertex_info; in softpipe_compute_vertex_info() local 91 vinfo->num_attribs = 0; in softpipe_compute_vertex_info() 99 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in softpipe_compute_vertex_info() 170 softpipe->viewport_index_slot = (int)vinfo->num_attribs; in softpipe_compute_vertex_info() 171 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in softpipe_compute_vertex_info() 173 softpipe->layer_slot = (int)vinfo->num_attribs; in softpipe_compute_vertex_info() 174 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in softpipe_compute_vertex_info() 188 draw_emit_vertex_attr(vinfo, EMIT_4F, vs_index); in softpipe_compute_vertex_info() 198 softpipe->psize_slot = (int)vinfo->num_attribs; in softpipe_compute_vertex_info() 199 draw_emit_vertex_attr(vinfo, EMIT_4 in softpipe_compute_vertex_info() [all...] |
/third_party/openssl/crypto/srp/ |
H A D | srp_vfy.c | 207 void SRP_user_pwd_set_gN(SRP_user_pwd *vinfo, const BIGNUM *g, in SRP_user_pwd_set_gN() argument 210 vinfo->N = N; in SRP_user_pwd_set_gN() 211 vinfo->g = g; in SRP_user_pwd_set_gN() 214 int SRP_user_pwd_set1_ids(SRP_user_pwd *vinfo, const char *id, in SRP_user_pwd_set1_ids() argument 217 OPENSSL_free(vinfo->id); in SRP_user_pwd_set1_ids() 218 OPENSSL_free(vinfo->info); in SRP_user_pwd_set1_ids() 219 vinfo->id = NULL; in SRP_user_pwd_set1_ids() 220 vinfo->info = NULL; in SRP_user_pwd_set1_ids() 221 if (id != NULL && NULL == (vinfo->id = OPENSSL_strdup(id))) in SRP_user_pwd_set1_ids() 223 return (info == NULL || NULL != (vinfo in SRP_user_pwd_set1_ids() 226 SRP_user_pwd_set_sv(SRP_user_pwd *vinfo, const char *s, const char *v) SRP_user_pwd_set_sv() argument 253 SRP_user_pwd_set0_sv(SRP_user_pwd *vinfo, BIGNUM *s, BIGNUM *v) SRP_user_pwd_set0_sv() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/srp/ |
H A D | srp_vfy.c | 207 void SRP_user_pwd_set_gN(SRP_user_pwd *vinfo, const BIGNUM *g, in SRP_user_pwd_set_gN() argument 210 vinfo->N = N; in SRP_user_pwd_set_gN() 211 vinfo->g = g; in SRP_user_pwd_set_gN() 214 int SRP_user_pwd_set1_ids(SRP_user_pwd *vinfo, const char *id, in SRP_user_pwd_set1_ids() argument 217 OPENSSL_free(vinfo->id); in SRP_user_pwd_set1_ids() 218 OPENSSL_free(vinfo->info); in SRP_user_pwd_set1_ids() 219 if (id != NULL && NULL == (vinfo->id = OPENSSL_strdup(id))) in SRP_user_pwd_set1_ids() 221 return (info == NULL || NULL != (vinfo->info = OPENSSL_strdup(info))); in SRP_user_pwd_set1_ids() 224 static int SRP_user_pwd_set_sv(SRP_user_pwd *vinfo, const char *s, in SRP_user_pwd_set_sv() argument 230 vinfo in SRP_user_pwd_set_sv() 251 SRP_user_pwd_set0_sv(SRP_user_pwd *vinfo, BIGNUM *s, BIGNUM *v) SRP_user_pwd_set0_sv() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_swtnl_state.c | 222 struct vertex_info *vinfo = &svga_render->vertex_info; in svga_swtnl_update_vdecl() local 233 memset(vinfo, 0, sizeof(*vinfo)); in svga_swtnl_update_vdecl() 240 draw_emit_vertex_attr(vinfo, EMIT_4F, src); in svga_swtnl_update_vdecl() 241 vinfo->attrib[0].emit = EMIT_4F; in svga_swtnl_update_vdecl() 261 draw_emit_vertex_attr(vinfo, EMIT_4F, src); in svga_swtnl_update_vdecl() 268 draw_emit_vertex_attr(vinfo, EMIT_4F, src); in svga_swtnl_update_vdecl() 277 draw_emit_vertex_attr(vinfo, EMIT_4F, src); in svga_swtnl_update_vdecl() 284 draw_emit_vertex_attr(vinfo, EMIT_1F, src); in svga_swtnl_update_vdecl() 300 draw_compute_vertex_size(vinfo); in svga_swtnl_update_vdecl() [all...] |
/third_party/libsnd/src/ |
H A D | ogg_vorbis.c | 131 vorbis_info vinfo ; member 165 vorbis_info_init (&vdata->vinfo) ; in vorbis_read_header() 178 if (vorbis_synthesis_headerin (&vdata->vinfo, &vdata->vcomment, &odata->opacket) < 0) in vorbis_read_header() 219 vorbis_synthesis_headerin (&vdata->vinfo, &vdata->vcomment, &odata->opacket) ; in vorbis_read_header() 230 psf_log_printf (psf, "Bitstream is %d channel, %D Hz\n", vdata->vinfo.channels, vdata->vinfo.rate) ; in vorbis_read_header() 291 psf->sf.samplerate = vdata->vinfo.rate ; in vorbis_read_header() 292 psf->sf.channels = vdata->vinfo.channels ; in vorbis_read_header() 299 vorbis_synthesis_init (&vdata->vdsp, &vdata->vinfo) ; in vorbis_read_header() 316 vorbis_info_init (&vdata->vinfo) ; in vorbis_write_header() [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw_feedback.c | 62 struct vertex_info vinfo; in set_feedback_vertex_format() 65 memset(&vinfo, 0, sizeof(vinfo)); in set_feedback_vertex_format() 69 vinfo.num_attribs = 1; in set_feedback_vertex_format() 70 vinfo.format[0] = FORMAT_4F; in set_feedback_vertex_format() 71 vinfo.interp_mode[0] = INTERP_LINEAR; in set_feedback_vertex_format() 76 vinfo.num_attribs = st->state.vs->cso->state.num_outputs; in set_feedback_vertex_format() 77 for (i = 0; i < vinfo.num_attribs; i++) { in set_feedback_vertex_format() 78 vinfo.format[i] = FORMAT_4F; in set_feedback_vertex_format() 79 vinfo in set_feedback_vertex_format() [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_draw.c | 228 struct vertex_info *vinfo = &r->vertex_info; in vroute_add() local 249 draw_emit_vertex_attr(vinfo, emit, attrib); in vroute_add() 253 r->vtxptr[attrib] = vinfo->size; in vroute_add() 254 vinfo->size += draw_translate_vinfo_size(emit); in vroute_add() 286 struct vertex_info *vinfo = &r->vertex_info; in nv30_render_validate() local 306 vinfo->num_attribs = 0; in nv30_render_validate() 307 vinfo->size = 0; in nv30_render_validate() 340 r->vtxfmt[i] |= vinfo->size << 8; in nv30_render_validate() 374 vinfo->size /= 4; in nv30_render_validate()
|
/third_party/NuttX/drivers/video/ |
H A D | fb.c | 401 struct fb_videoinfo_s vinfo = { 0 }; in fb_ioctl() local 405 ret = fb->vtable->getvideoinfo(fb->vtable, &vinfo); in fb_ioctl() 408 ret = LOS_ArchCopyToUser((void *)arg, &vinfo, sizeof(struct fb_videoinfo_s)); in fb_ioctl() 730 struct fb_videoinfo_s vinfo; in fb_register() local 772 ret = fb->vtable->getvideoinfo(fb->vtable, &vinfo); in fb_register() 779 nplanes = vinfo.nplanes; in fb_register() 780 DEBUGASSERT(vinfo.nplanes > 0 && (unsigned)plane < vinfo.nplanes); in fb_register()
|
/third_party/lz4/tests/ |
H A D | test-lz4-list.py | 142 for i, vinfo in enumerate(self.vinfo_list): 143 self.assertRegex(vinfo.filename, f"^test_list_.*({i + 1}/{len(self.vinfo_list)})".format(i + 1, len(self.vinfo_list))) 146 for vinfo in self.vinfo_list: 147 for i, frame_info in enumerate(vinfo.frame_list):
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver_nl80211_capa.c | 741 struct nl80211_vendor_cmd_info *vinfo; in wiphy_info_handler() local 742 if (nla_len(nl) != sizeof(*vinfo)) { in wiphy_info_handler() 746 vinfo = nla_data(nl); in wiphy_info_handler() 747 if (vinfo->vendor_id == OUI_QCA) { in wiphy_info_handler() 748 switch (vinfo->subcmd) { in wiphy_info_handler() 795 vinfo->vendor_id, vinfo->subcmd); in wiphy_info_handler() 804 struct nl80211_vendor_cmd_info *vinfo; in wiphy_info_handler() local 805 if (nla_len(nl) != sizeof(*vinfo)) { in wiphy_info_handler() 809 vinfo in wiphy_info_handler() [all...] |
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
H A D | glx_api.c | 149 is_usable_visual( XVisualInfo *vinfo ) in is_usable_visual() 151 switch (vinfo->CLASS) { in is_usable_visual() 159 if (vinfo->depth>=4) { in is_usable_visual() 181 save_glx_visual( Display *dpy, XVisualInfo *vinfo, in save_glx_visual() argument 248 if ((!comparePointers && v->visinfo->visualid == vinfo->visualid) in save_glx_visual() 249 || (comparePointers && v->vishandle == vinfo)) { in save_glx_visual() 257 xmvis = XMesaCreateVisual( dpy, vinfo, rgbFlag, alphaFlag, dbFlag, in save_glx_visual() 267 xmvis->vishandle = vinfo; in save_glx_visual() 363 find_glx_visual( Display *dpy, XVisualInfo *vinfo ) in find_glx_visual() 370 && VisualTable[i]->visinfo->visualid == vinfo in find_glx_visual() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_nl80211_capa.c | 977 struct nl80211_vendor_cmd_info *vinfo; in wiphy_info_handler() local 978 if (nla_len(nl) != sizeof(*vinfo)) { in wiphy_info_handler() 982 vinfo = nla_data(nl); in wiphy_info_handler() 983 if (vinfo->vendor_id == OUI_QCA) { in wiphy_info_handler() 984 switch (vinfo->subcmd) { in wiphy_info_handler() 1033 } else if (vinfo->vendor_id == OUI_BRCM) { in wiphy_info_handler() 1034 switch (vinfo->subcmd) { in wiphy_info_handler() 1047 vinfo->vendor_id, vinfo->subcmd); in wiphy_info_handler() 1056 struct nl80211_vendor_cmd_info *vinfo; in wiphy_info_handler() local [all...] |
/third_party/NuttX/include/nuttx/video/ |
H A D | fb.h | 478 struct fb_videoinfo_s *vinfo);
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
H A D | r300_state_derived.c | 129 struct vertex_info *vinfo = &r300->vertex_info; in r300_swtcl_vertex_psc() local 139 attrib_count = vinfo->num_attribs; in r300_swtcl_vertex_psc() 147 format = draw_translate_vinfo_format(vinfo->attrib[i].emit); in r300_swtcl_vertex_psc()
|
/third_party/libabigail/ |
H A D | ltmain.sh | 5141 vinfo= 5752 prev=vinfo 5757 prev=vinfo 7206 test -n "$vinfo" && \ 7280 test -n "$vinfo" && \ 7289 set dummy $vinfo 0 0 0 7346 func_fatal_error "\`$vinfo' is not valid version information" 7354 func_fatal_error "\`$vinfo' is not valid version information" 7362 func_fatal_error "\`$vinfo' is not valid version information" 7368 func_fatal_error "\`$vinfo' i [all...] |
/third_party/skia/third_party/externals/microhttpd/ |
H A D | ltmain.sh | 5161 vinfo= 5772 prev=vinfo 5777 prev=vinfo 7229 test -n "$vinfo" && \ 7303 test -n "$vinfo" && \ 7312 set dummy $vinfo 0 0 0 7372 func_fatal_error "\`$vinfo' is not valid version information" 7380 func_fatal_error "\`$vinfo' is not valid version information" 7388 func_fatal_error "\`$vinfo' is not valid version information" 7394 func_fatal_error "\`$vinfo' i [all...] |
/third_party/eudev/ |
H A D | ltmain.sh | 6608 vinfo= 7240 prev=vinfo 7245 prev=vinfo 8752 test -n "$vinfo" && \ 8826 test -n "$vinfo" && \ 8835 set dummy $vinfo 0 0 0 8892 func_fatal_error "'$vinfo' is not valid version information" 8900 func_fatal_error "'$vinfo' is not valid version information" 8908 func_fatal_error "'$vinfo' is not valid version information" 8914 func_fatal_error "'$vinfo' i [all...] |