| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| set.h | 43 struct set { struct 56 struct set * 61 struct set * 62 _mesa_set_clone(struct set *set, void *dst_mem_ctx); 65 _mesa_set_destroy(struct set *set, 68 _mesa_set_clear(struct set *set, 72 _mesa_set_add(struct set *set, const void *key) [all...] |
| set.c | 42 #include "set.h" 107 struct set * 113 struct set *ht; 115 ht = ralloc(mem_ctx, struct set); 137 struct set * 138 _mesa_set_clone(struct set *set, void *dst_mem_ctx) 140 struct set *clone; 142 clone = ralloc(dst_mem_ctx, struct set); 146 memcpy(clone, set, sizeof(struct set)) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| set.h | 43 struct set { struct 59 _mesa_set_init(struct set *ht, void *mem_ctx, 64 struct set * 69 struct set * 72 struct set * 73 _mesa_set_clone(struct set *set, void *dst_mem_ctx); 76 _mesa_set_destroy(struct set *set, 79 _mesa_set_resize(struct set *set, uint32_t entries) [all...] |
| set.c | 42 #include "set.h" 120 _mesa_set_init(struct set *ht, void *mem_ctx, 140 struct set * 146 struct set *ht; 148 ht = ralloc(mem_ctx, struct set); 174 struct set * 180 struct set * 181 _mesa_set_clone(struct set *set, void *dst_mem_ctx) 183 struct set *clone [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_instr_set.h | 31 * "instruction set," which is an abstraction for finding duplicate 32 * instructions using a hash set. Note that the question of whether an 42 /** Creates an instruction set, using a given ralloc mem_ctx */ 43 struct set *nir_instr_set_create(void *mem_ctx); 45 /** Destroys an instruction set. */ 46 void nir_instr_set_destroy(struct set *instr_set); 49 * Adds an instruction to an instruction set if it doesn't exist, or if it 54 bool nir_instr_set_add_or_rewrite(struct set *instr_set, nir_instr *instr); 57 * Removes an instruction from an instruction set, so that other instructions 60 void nir_instr_set_remove(struct set *instr_set, nir_instr *instr) [all...] |
| nir_opt_cse.c | 42 cse_block(nir_block *block, struct set *dominance_set) 45 struct set *instr_set = _mesa_set_clone(dominance_set, NULL); 67 struct set *instr_set = nir_instr_set_create(NULL);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_instr_set.h | 31 * "instruction set," which is an abstraction for finding duplicate 32 * instructions using a hash set. Note that the question of whether an 42 /** Creates an instruction set, using a given ralloc mem_ctx */ 43 struct set *nir_instr_set_create(void *mem_ctx); 45 /** Destroys an instruction set. */ 46 void nir_instr_set_destroy(struct set *instr_set); 49 * Adds an instruction to an instruction set if it doesn't exist. If it 58 bool nir_instr_set_add_or_rewrite(struct set *instr_set, nir_instr *instr, 63 * Removes an instruction from an instruction set, so that other instructions 66 void nir_instr_set_remove(struct set *instr_set, nir_instr *instr) [all...] |
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| gridtrimvertex.h | 54 inline void set( long, long ); 55 inline void set( REAL, REAL ); 56 inline void set( TrimVertex * ); 64 GridTrimVertex::set( long x, long y ) function in class:GridTrimVertex 72 GridTrimVertex::set( REAL x, REAL y ) function in class:GridTrimVertex 82 GridTrimVertex::set( TrimVertex *v ) function in class:GridTrimVertex
|
| hull.cc | 108 * - if vertex is on trim curve, set vtop point to 109 * that vertex. if vertex is on grid, set vtop to 119 gv->set( upper.left->prev() ); 126 gv->set( uarray.uarray[upper.index], upper.line->vval ); 127 gv->set( upper.index, upper.line->vindex ); 133 gv->set( upper.right->next() ); 145 gv->set( lower.left->next() ); 151 gv->set( uarray.uarray[lower.index], lower.line->vval ); 152 gv->set( lower.index, lower.line->vindex ); 158 gv->set( lower.right->prev() ) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| radv_descriptor_set.h | 56 /* The create flags for this descriptor set layout */ 59 /* Number of bindings in this descriptor set */ 62 /* Total size of the descriptor set with room for all array entries */ 68 /* Shader stages affected by this descriptor set */ 72 /* Number of buffers in this descriptor set */ 75 /* Number of dynamic offsets used by this descriptor set */ 83 /* Bindings in this descriptor set */ 95 } set[MAX_SETS]; member in struct:radv_pipeline_layout 106 radv_immutable_samplers(const struct radv_descriptor_set_layout *set, 109 return (const uint32_t *)((const char *)set + binding->immutable_samplers_offset) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| radv_descriptor_set.h | 52 /* The create flags for this descriptor set layout */ 55 /* Number of bindings in this descriptor set */ 58 /* Total size of the descriptor set with room for all array entries */ 64 /* Shader stages affected by this descriptor set */ 68 /* Number of buffers in this descriptor set */ 71 /* Number of dynamic offsets used by this descriptor set */ 79 /* Bindings in this descriptor set */ 88 } set[MAX_SETS]; member in struct:radv_pipeline_layout 99 radv_immutable_samplers(const struct radv_descriptor_set_layout *set, 101 return (const uint32_t*)((const char*)set + binding->immutable_samplers_offset) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| tu_descriptor_set.h | 48 * tu_pipeline_layout::set::dynamic_offset_start). 68 /* The create flags for this descriptor set layout */ 71 /* Number of bindings in this descriptor set */ 74 /* Total size of the descriptor set with room for all array entries */ 77 /* Shader stages affected by this descriptor set */ 80 /* Number of dynamic offsets used by this descriptor set */ 91 /* Bindings in this descriptor set */ 104 } set[MAX_SETS]; member in struct:tu_pipeline_layout 112 tu_immutable_samplers(const struct tu_descriptor_set_layout *set, 115 return (void *) ((const char *) set + binding->immutable_samplers_offset) [all...] |
| /xsrc/external/mit/fontconfig/dist/doc/ |
| fcstrset.fncs | 29 @PURPOSE@ create a string set 31 Create an empty set. 36 @TYPE1@ FcStrSet * @ARG1@ set 38 @PURPOSE@ check set for membership 41 <parameter>set</parameter>. 57 @TYPE1@ FcStrSet * @ARG1@ set 59 @PURPOSE@ add to a string set 61 Adds a copy of <parameter>s</parameter> to <parameter>set</parameter>. 66 @TYPE1@ FcStrSet * @ARG1@ set 68 @PURPOSE@ add a filename to a string set [all...] |
| fcobjectset.fncs | 27 @PURPOSE@ Create an object set 29 Creates an empty set. 36 @PURPOSE@ Add to an object set 38 Adds a property name to the set. Returns FcFalse if the property name cannot be 39 inserted into the set (due to allocation failure). Otherwise returns FcTrue. 45 @PURPOSE@ Destroy an object set 47 Destroys an object set. 68 @PURPOSE@ Build object set from args 70 These build an object set from a null-terminated list of property names.
|
| fcfontset.fncs | 27 @PURPOSE@ Create a font set 29 Creates an empty font set. 35 @PURPOSE@ Destroy a font set 37 Destroys a font set. Note that this destroys any referenced patterns as 45 @PURPOSE@ Add to a font set 47 Adds a pattern to a font set. Note that the pattern is not copied before 48 being inserted into the set. Returns FcFalse if the pattern cannot be 49 inserted into the set (due to allocation failure). Otherwise returns FcTrue. 59 @PURPOSE@ List fonts from a set of font sets 64 the set of unique such patterns [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| anv_nir_apply_pipeline_layout.c | 28 #include "util/set.h" 47 struct set *lowered_instrs; 60 } set[MAX_SETS]; member in struct:apply_pipeline_layout_state 65 uint32_t set, uint32_t binding) 68 &state->layout->set[set].layout->binding[binding]; 70 if (state->set[set].use_count[binding] < UINT8_MAX) 71 state->set[set].use_count[binding]++ 212 uint32_t set = nir_intrinsic_desc_set(intrin); local 359 uint32_t set = nir_intrinsic_desc_set(intrin); local 682 unsigned set = var->data.descriptor_set; local 728 unsigned set = var->data.descriptor_set; local 814 unsigned set = var->data.descriptor_set; local 947 unsigned set = var->data.descriptor_set; local 1079 uint8_t set; member in struct:binding_info 1206 unsigned set = infos[i].set, b = infos[i].binding; local 1291 const uint32_t set = var->data.descriptor_set; local [all...] |
| /xsrc/external/mit/pixman/dist/pixman/ |
| pixman-arm-simd-asm.h | 65 .set FLAG_DST_WRITEONLY, 0 66 .set FLAG_DST_READWRITE, 1 67 .set FLAG_COND_EXEC, 0 68 .set FLAG_BRANCH_OVER, 2 69 .set FLAG_PROCESS_PRESERVES_PSR, 0 70 .set FLAG_PROCESS_CORRUPTS_PSR, 4 71 .set FLAG_PROCESS_DOESNT_STORE, 0 72 .set FLAG_PROCESS_DOES_STORE, 8 /* usually because it needs to conditionally skip it */ 73 .set FLAG_NO_SPILL_LINE_VARS, 0 74 .set FLAG_SPILL_LINE_VARS_WIDE, 1 [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| tu_descriptor_set.h | 53 /* The create flags for this descriptor set layout */ 56 /* Number of bindings in this descriptor set */ 59 /* Total size of the descriptor set with room for all array entries */ 62 /* Shader stages affected by this descriptor set */ 66 /* Number of buffers in this descriptor set */ 69 /* Number of dynamic offsets used by this descriptor set */ 75 /* Bindings in this descriptor set */ 86 } set[MAX_SETS]; member in struct:tu_pipeline_layout 96 tu_immutable_samplers(const struct tu_descriptor_set_layout *set, 99 return (const uint32_t *) ((const char *) set [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| anv_nir_apply_pipeline_layout.c | 29 #include "util/set.h" 47 struct set *lowered_instrs; 59 } set[MAX_SETS]; member in struct:apply_pipeline_layout_state 85 uint32_t set, uint32_t binding) 88 &state->layout->set[set].layout->binding[binding]; 90 if (state->set[set].use_count[binding] < UINT8_MAX) 91 state->set[set].use_count[binding]++ 198 uint32_t set = nir_intrinsic_desc_set(intrin); local 219 uint32_t set = nir_intrinsic_desc_set(intrin); local 584 const uint32_t set = var->data.descriptor_set; local 661 uint32_t set = UINT32_MAX, binding = UINT32_MAX; local 774 uint32_t set = UINT32_MAX, binding = UINT32_MAX; local 1020 unsigned set = var->data.descriptor_set; local 1129 unsigned set = var->data.descriptor_set; local 1261 unsigned set = var->data.descriptor_set; local 1386 uint8_t set; member in struct:binding_info 1509 unsigned set = infos[i].set, b = infos[i].binding; local 1597 const uint32_t set = var->data.descriptor_set; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| panvk_vX_descriptor_set.c | 51 struct panvk_descriptor_set *set; local 54 set = vk_object_zalloc(&device->vk, NULL, 57 if (!set) 60 set->layout = layout; 61 set->descs = vk_alloc(&device->vk.alloc, 62 sizeof(*set->descs) * layout->num_descs, 8, 64 if (!set->descs) 68 set->ubos = vk_zalloc(&device->vk.alloc, 71 if (!set->ubos) 76 set->samplers = vk_zalloc(&device->vk.alloc 128 struct panvk_descriptor_set *set = NULL; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| u_vertex_state_cache.h | 39 struct set *set; member in struct:util_vertex_state_cache
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| format.hpp | 26 #include <set> 40 std::set<cl_image_format> supported_formats(const context &ctx,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| format.hpp | 26 #include <set> 40 std::set<cl_image_format> supported_formats(const context &ctx,
|
| /xsrc/external/mit/fontconfig/dist/src/ |
| fcstr.c | 1251 FcStrSet *set = malloc (sizeof (FcStrSet)); local 1252 if (!set) 1254 FcRefInit (&set->ref, 1); 1255 set->num = 0; 1256 set->size = 0; 1257 set->strs = 0; 1258 set->control = control; 1259 return set; 1263 _FcStrSetGrow (FcStrSet *set, int growElements) 1266 FcChar8 **strs = malloc ((set->size + growElements + 1) * sizeof (FcChar8 *)) [all...] |
| fcdir.c | 66 FcFileScanFontConfig (FcFontSet *set, 72 int old_nfont = set->nfont; 81 if (!FcFreeTypeQueryAll (file, -1, NULL, NULL, set)) 87 for (i = old_nfont; i < set->nfont; i++) 89 FcPattern *font = set->fonts[i]; 131 FcFileScanConfig (FcFontSet *set, 158 if (set) 159 return FcFileScanFontConfig (set, file, config); 166 FcFileScan (FcFontSet *set, 179 ret = FcFileScanConfig (set, dirs, file, config) 319 FcFontSet *set; local [all...] |