HomeSort by: relevance | last modified time | path
    Searched defs:sv (Results 1 - 25 of 101) sorted by relevancy

1 2 3 4 5

  /xsrc/external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/
lunr.sv.js 17 !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r,l,n;e.sv=function(){this.pipeline.reset(),this.pipeline.add(e.sv.trimmer,e.sv.stopWordFilter,e.sv.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.sv.stemmer))},e.sv.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.sv.trimmer=e.trimmerSupport.generateTrimmer(e.sv.wordCharacters),e.Pipeline.registerFunction(e.sv.trimmer,"trimmer-sv"),e.sv.stemmer=(r=e.stemmerSupport.Among,l=e.stemmerSupport.SnowballProgram,n=new function(){var n (…)
    [all...]
  /xsrc/external/mit/libFS/dist/src/
FSClServ.c 62 FSServer **sv = &_FSHeadOfServerList; local
76 *sv = s->next;
80 sv = &(s->next);
81 s = *sv;
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/
x-hash.h 80 size_t sv = (size_t)val; local
81 unsigned int uv = (unsigned int)sv;
85 assert(sv == uv);
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/
x-hash.h 81 size_t sv = (size_t)val; local
82 unsigned int uv = (unsigned int)sv;
86 assert(sv == uv);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit]; local
40 if (ss && sv) {
nv30_fragtex.c 43 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit]; local
48 if (ss && sv) {
49 const struct nv30_texfmt *fmt = nv30_texfmt(pscreen, sv->pipe.format);
50 struct pipe_resource *pt = sv->pipe.texture;
53 u32 filter = sv->filt | (ss->filt & sv->filt_mask);
54 u32 format = sv->fmt | ss->fmt;
61 if (sv->base_lod)
63 max_lod = sv->base_lod;
64 min_lod = sv->base_lod
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_sampler_view.c 47 svga_debug_describe_sampler_view(char *buf, const struct svga_sampler_view *sv)
50 debug_describe_resource(res, sv->texture);
52 res, sv->min_lod, sv->max_lod);
64 struct svga_sampler_view *sv = NULL; local
98 svga_sampler_view_reference(&sv, tex->cached_view);
102 svga_validate_sampler_view(svga_context(pipe), sv); local
103 return sv;
108 sv = CALLOC_STRUCT(svga_sampler_view);
109 if (!sv)
    [all...]
svga_pipe_sampler.c 366 struct svga_pipe_sampler_view *sv = CALLOC_STRUCT(svga_pipe_sampler_view); local
368 if (!sv) {
372 sv->base = *templ;
373 sv->base.reference.count = 1;
374 sv->base.texture = NULL;
375 pipe_resource_reference(&sv->base.texture, texture);
377 sv->base.context = pipe;
378 sv->id = SVGA3D_INVALID_ID;
384 return &sv->base;
393 struct svga_pipe_sampler_view *sv = svga_pipe_sampler_view(view) local
    [all...]
svga_state_sampler.c 79 struct svga_pipe_sampler_view *sv = local
82 if (sv && res == svga_resource_handle(sv->base.texture)) {
127 struct svga_pipe_sampler_view *sv)
131 if (sv->id == SVGA3D_INVALID_ID) {
133 struct pipe_resource *texture = sv->base.texture;
138 enum pipe_format viewFormat = sv->base.format;
172 unsigned elem_size = util_format_get_blocksize(sv->base.format);
174 viewDesc.buffer.firstElement = sv->base.u.buf.offset / elem_size;
175 viewDesc.buffer.numElements = sv->base.u.buf.size / elem_size
257 struct svga_pipe_sampler_view *sv = local
356 struct svga_pipe_sampler_view *sv = svga->polygon_stipple.sampler_view; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit]; local
40 if (ss && sv) {
nv30_fragtex.c 43 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit]; local
48 if (ss && sv) {
49 const struct nv30_texfmt *fmt = nv30_texfmt(pscreen, sv->pipe.format);
50 struct pipe_resource *pt = sv->pipe.texture;
53 u32 filter = sv->filt | (ss->filt & sv->filt_mask);
54 u32 format = sv->fmt | ss->fmt;
61 if (sv->base_lod)
63 max_lod = sv->base_lod;
64 min_lod = sv->base_lod
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_sampler_view.c 47 svga_debug_describe_sampler_view(char *buf, const struct svga_sampler_view *sv)
50 debug_describe_resource(res, sv->texture);
52 res, sv->min_lod, sv->max_lod);
64 struct svga_sampler_view *sv = NULL; local
98 svga_sampler_view_reference(&sv, tex->cached_view);
102 svga_validate_sampler_view(svga_context(pipe), sv); local
103 return sv;
108 sv = CALLOC_STRUCT(svga_sampler_view);
109 if (!sv)
    [all...]
svga_pipe_sampler.c 378 struct svga_pipe_sampler_view *sv = CALLOC_STRUCT(svga_pipe_sampler_view); local
380 if (!sv) {
384 sv->base = *templ;
385 sv->base.reference.count = 1;
386 sv->base.texture = NULL;
387 pipe_resource_reference(&sv->base.texture, texture);
389 sv->base.context = pipe;
390 sv->id = SVGA3D_INVALID_ID;
396 return &sv->base;
405 struct svga_pipe_sampler_view *sv = svga_pipe_sampler_view(view) local
    [all...]
svga_state_sampler.c 79 struct svga_pipe_sampler_view *sv = local
82 if (sv && res == svga_resource_handle(sv->base.texture)) {
127 struct svga_pipe_sampler_view *sv)
131 if (sv->id == SVGA3D_INVALID_ID) {
133 struct pipe_resource *texture = sv->base.texture;
138 enum pipe_format viewFormat = sv->base.format;
169 unsigned elem_size = util_format_get_blocksize(sv->base.format);
171 viewDesc.buffer.firstElement = sv->base.u.buf.offset / elem_size;
172 viewDesc.buffer.numElements = sv->base.u.buf.size / elem_size
255 struct svga_pipe_sampler_view *sv = local
353 struct svga_pipe_sampler_view *sv = svga->polygon_stipple.sampler_view; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_vdpau.c 66 struct pipe_sampler_view *sv; local
85 sv = samplers[index >> 1];
86 if (!sv)
89 pipe_resource_reference(&res, sv->texture);
st_atom_sampler.c 106 const struct st_sampler_view *sv = st_texture_get_current_sampler_view(st, stobj); local
108 if (sv) {
109 struct pipe_sampler_view *view = sv->view;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_texture_state.c 86 struct etna_sampler_view *sv = CALLOC_STRUCT(etna_sampler_view); local
95 if (!sv)
100 free(sv);
104 sv->base = *so;
105 pipe_reference_init(&sv->base.reference, 1);
106 sv->base.texture = NULL;
107 pipe_resource_reference(&sv->base.texture, prsc);
108 sv->base.context = pctx;
111 sv->TE_SAMPLER_CONFIG0 = COND(!ext && !astc, VIVS_TE_SAMPLER_CONFIG0_FORMAT(format));
112 sv->TE_SAMPLER_CONFIG0_MASK = 0xffffffff
215 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
221 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
227 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
233 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
246 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
256 struct etna_sampler_view *sv; local
273 struct etna_sampler_view *sv; local
302 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
312 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
321 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]); local
336 struct etna_sampler_view *sv = etna_sampler_view(pview); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_vdpau.c 64 struct pipe_sampler_view *sv; local
83 sv = samplers[index >> 1];
84 if (!sv)
87 pipe_resource_reference(&res, sv->texture);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_pstipple.c 135 struct pipe_sampler_view templat, *sv; local
138 sv = pipe->create_sampler_view(pipe, tex, &templat);
140 return sv;
  /xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/
graw_util.h 315 struct pipe_sampler_view *sv; local
325 sv = info->ctx->create_sampler_view(info->ctx, texture, &sv_temp);
327 return sv;
quad-tex.c 14 static struct pipe_sampler_view *sv = NULL; variable in typeref:struct:pipe_sampler_view
170 sv = graw_util_create_simple_sampler_view(&info, texture);
171 info.ctx->set_sampler_views(info.ctx, PIPE_SHADER_FRAGMENT, 0, 1, 0, false, &sv);
tex-swizzle.c 11 static struct pipe_sampler_view *sv = NULL; variable in typeref:struct:pipe_sampler_view
146 sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_template);
147 if (sv == NULL)
150 info.ctx->set_sampler_views(info.ctx, PIPE_SHADER_FRAGMENT, 0, 1, 0, false, &sv);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_pstipple.c 135 struct pipe_sampler_view templat, *sv; local
138 sv = pipe->create_sampler_view(pipe, tex, &templat);
140 return sv;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
graw_util.h 312 struct pipe_sampler_view *sv; local
322 sv = info->ctx->create_sampler_view(info->ctx, texture, &sv_temp);
324 return sv;
quad-tex.c 14 static struct pipe_sampler_view *sv = NULL; variable in typeref:struct:pipe_sampler_view
170 sv = graw_util_create_simple_sampler_view(&info, texture);
171 info.ctx->set_sampler_views(info.ctx, PIPE_SHADER_FRAGMENT, 0, 1, &sv);

Completed in 94 milliseconds

1 2 3 4 5