| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | 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 *se [all...] |
| H A D | 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) argument 140 struct set *clone; 142 clone = ralloc(dst_mem_ctx, struct set); 146 memcpy(clone, set, sizeo 187 _mesa_set_clear(struct set * set,void (* delete_function)(struct set_entry * entry)) argument 234 _mesa_set_search(const struct set * set,const void * key) argument 241 _mesa_set_search_pre_hashed(const struct set * set,uint32_t hash,const void * key) argument 352 _mesa_set_add(struct set * set,const void * key) argument 359 _mesa_set_add_pre_hashed(struct set * set,uint32_t hash,const void * key) argument 387 _mesa_set_remove_key(struct set * set,const void * key) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | 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 *se [all...] |
| H A D | 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) argument 183 struct set *clon 238 _mesa_set_clear(struct set * set,void (* delete_function)(struct set_entry * entry)) argument 293 _mesa_set_search(const struct set * set,const void * key) argument 300 _mesa_set_search_pre_hashed(const struct set * set,uint32_t hash,const void * key) argument 372 _mesa_set_resize(struct set * set,uint32_t entries) argument 480 _mesa_set_add(struct set * set,const void * key) argument 487 _mesa_set_add_pre_hashed(struct set * set,uint32_t hash,const void * key) argument 495 _mesa_set_search_and_add(struct set * set,const void * key,bool * replaced) argument 504 _mesa_set_search_and_add_pre_hashed(struct set * set,uint32_t hash,const void * key,bool * replaced) argument 522 _mesa_set_search_or_add(struct set * set,const void * key,bool * found) argument 529 _mesa_set_search_or_add_pre_hashed(struct set * set,uint32_t hash,const void * key,bool * found) argument 558 _mesa_set_remove_key(struct set * set,const void * key) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | 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_se [all...] |
| H A D | 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/ctwm/dist/cmake_files/ |
| H A D | cpack_setup.cmake | 6 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "A window manager for the X Window System.") 7 set(CPACK_PACKAGE_VENDOR "ctwm") 8 set(CPACK_PACKAGE_CONTACT "ctwm@ctwm.org") 9 set(CPACK_PACKAGE_RELOCATABLE OFF) 10 set(CPACK_PACKAGE_VERSION ${ctwm_version_str}) 13 set(CPACK_RPM_PACKAGE_LICENSE "MIT") 14 set(CPACK_RPM_PACKAGE_GROUP "User Interface/X") 15 set(CPACK_RPM_PACKAGE_REQUIRES "m4") 16 set(CPACK_RPM_PACKAGE_URL "https://www.ctwm.org/") 18 set(CPACK_DEBIAN_PACKAGE_SECTIO [all...] |
| H A D | vcs_checks.cmake | 9 set(BZR_DIRSTATE_FILE ${CMAKE_SOURCE_DIR}/.bzr/checkout/dirstate) 11 set(IS_BZR_CO 1) 13 set(IS_BZR_CO 0) 18 set(HAS_BZR 0) 22 set(HAS_BZR 1) 34 set(GIT_INDEX_FILE ${CMAKE_SOURCE_DIR}/.git/index) 35 set(IS_GIT_CO 0) 37 set(IS_GIT_CO 1) 41 set(HAS_GIT 0) 44 set(HAS_GI [all...] |
| H A D | install_paths.cmake | 5 # CMAKE_INSTALL_PREFIX is the user's responsibility to set right. We 11 set(ETCDIR ${CMAKE_INSTALL_PREFIX}/etc) 17 set(BINDIR ${CMAKE_INSTALL_PREFIX}/bin) 23 set(DATADIR ${CMAKE_INSTALL_PREFIX}/share/ctwm) 29 set(DOCDIR ${CMAKE_INSTALL_PREFIX}/share/doc/ctwm) 35 set(EXAMPLEDIR ${CMAKE_INSTALL_PREFIX}/share/examples/ctwm) 40 # User can set MANDIR to override, if they don't, check a few likely 52 set(MANDIR "${CMAKE_INSTALL_PREFIX}/man") 59 set(MAN1PATH "${MANDIR}/man1") 62 set(PIXMAPDI [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | 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_se [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/ |
| H A D | tgsi_dump.gdb | 2 set $tokens=(const struct tgsi_header *)($arg0) 3 set $nr_tokens = $tokens->HeaderSize + $tokens->BodySize 4 set $tokens_end = &$tokens[$nr_tokens]
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/ |
| H A D | tgsi_dump.gdb | 2 set $tokens=(const struct tgsi_header *)($arg0) 3 set $nr_tokens = $tokens->HeaderSize + $tokens->BodySize 4 set $tokens_end = &$tokens[$nr_tokens]
|
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | 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
|
| /xsrc/external/mit/freetype/dist/builds/cmake/ |
| H A D | iOS.cmake | 36 # IOS_PLATFORM value above. If you manually set this variable, it 45 # manually set this variable, it forces the use of a specific SDK 68 set(CMAKE_SYSTEM_NAME Darwin) 69 set(CMAKE_SYSTEM_VERSION 1) 70 set(UNIX True) 71 set(APPLE True) 72 set(IOS True) 75 set(CMAKE_OSX_DEPLOYMENT_TARGET "" 89 set(CMAKE_CXX_COMPILER_WORKS TRUE) 90 set(CMAKE_C_COMPILER_WORK [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| H A D | 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, argument 109 return (const uint32_t *)((const char *)set 120 radv_immutable_ycbcr_samplers(const struct radv_descriptor_set_layout * set,unsigned binding_index) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | 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, argument 101 return (const uint32_t*)((const char*)set 111 radv_immutable_ycbcr_samplers(const struct radv_descriptor_set_layout * set,unsigned binding_index) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| H A D | 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, argument 115 return (void *) ((const char *) set 119 tu_immutable_ycbcr_samplers(const struct tu_descriptor_set_layout * set,const struct tu_descriptor_set_binding_layout * binding) argument [all...] |
| /xsrc/external/mit/xf86-video-newport/dist/src/ |
| H A D | newport_regs.c | 17 pNewportRegs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | 19 pNewportRegs->set.dcbdata0.all = (vc2Ireg << 24) | (val << 8); 25 pNewportRegs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | 27 pNewportRegs->set.dcbdata0.bytes.b3 = vc2Ireg; 28 pNewportRegs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_IREG | 30 return pNewportRegs->set.dcbdata0.hwords.s1; 75 pNewportRegs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_RAM | 80 *data = pNewportRegs->set.dcbdata0.hwords.s1; 108 pNewportRegs->set.dcbmode = (xmapChip | R_DCB_XMAP9_PROTOCOL | 110 if( (pNewportRegs->set [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/perf/ |
| H A D | gen_perf.py | 190 def output_rpn_equation_code(set, counter, equation): 208 elif operand in set.counter_vars: 209 reference = set.counter_vars[operand] 210 operand = set.read_funcs[operand[1:]] + "(perf, query, accumulator)" 212 raise Exception("Failed to resolve variable " + operand + " in equation " + equation + " for " + set.name + " :: " + counter.get('name')); 221 raise Exception("Spurious empty rpn code for " + set.name + " :: " + 229 if value in set.counter_vars: 230 value = set.read_funcs[value[1:]] + "(perf, query, accumulator)" 234 def splice_rpn_expression(set, counter, expression): 250 raise Exception("Failed to resolve variable " + operand + " in expression " + expression + " for " + set [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | 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] 64 add_binding(struct apply_pipeline_layout_state * state,uint32_t set,uint32_t binding) argument 165 uint32_t set = nir_intrinsic_desc_set(intrin); local in function:find_descriptor_for_index_src 212 uint32_t set = nir_intrinsic_desc_set(intrin); local in function:build_index_for_res_reindex 359 uint32_t set = nir_intrinsic_desc_set(intrin); local in function:lower_res_index_intrinsic 682 unsigned set = var->data.descriptor_set; local in function:build_descriptor_load 728 unsigned set = var->data.descriptor_set; local in function:lower_image_intrinsic 814 unsigned set = var->data.descriptor_set; local in function:lower_tex_deref 947 unsigned set = var->data.descriptor_set; local in function:lower_gen7_tex_swizzle 1079 uint8_t set; member in struct:binding_info 1151 for (uint32_t set = 0; set < layout->num_sets; set++) { local in function:anv_nir_apply_pipeline_layout 1164 for (uint32_t set = 0; set < layout->num_sets; set++) { local in function:anv_nir_apply_pipeline_layout 1206 unsigned set = infos[i].set, b = infos[i].binding; local in function:anv_nir_apply_pipeline_layout 1291 const uint32_t set = var->data.descriptor_set; local in function:anv_nir_apply_pipeline_layout [all...] |
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | 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_WID [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/perf/ |
| H A D | gen_perf.py | 198 def output_rpn_equation_code(set, counter, equation): 216 elif operand in set.counter_vars: 217 reference = set.counter_vars[operand] 218 operand = set.read_funcs[operand[1:]] + "(perf, query, results)" 220 raise Exception("Failed to resolve variable " + operand + " in equation " + equation + " for " + set.name + " :: " + counter.get('name')); 229 raise Exception("Spurious empty rpn code for " + set.name + " :: " + 237 if value in set.counter_vars: 238 value = set.read_funcs[value[1:]] + "(perf, query, results)" 242 def splice_rpn_expression(set, counter, expression): 258 raise Exception("Failed to resolve variable " + operand + " in expression " + expression + " for " + set [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | 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, argument 99 return (const uint32_t *) ((const char *) set [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | 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] 84 add_binding(struct apply_pipeline_layout_state * state,uint32_t set,uint32_t binding) argument 198 uint32_t set = nir_intrinsic_desc_set(intrin); local in function:descriptor_has_bti 219 uint32_t set = nir_intrinsic_desc_set(intrin); local in function:descriptor_address_format 309 build_res_index(nir_builder * b,uint32_t set,uint32_t binding,nir_ssa_def * array_index,nir_address_format addr_format,struct apply_pipeline_layout_state * state) argument 584 const uint32_t set = var->data.descriptor_set; local in function:build_load_var_deref_descriptor_mem 625 build_res_index_for_chain(nir_builder * b,nir_intrinsic_instr * intrin,nir_address_format addr_format,uint32_t * set,uint32_t * binding,struct apply_pipeline_layout_state * state) argument 661 uint32_t set = UINT32_MAX, binding = UINT32_MAX; local in function:build_buffer_addr_for_idx_intrin 774 uint32_t set = UINT32_MAX, binding = UINT32_MAX; local in function:lower_load_accel_struct_desc 1020 unsigned set = var->data.descriptor_set; local in function:lower_image_intrinsic 1129 unsigned set = var->data.descriptor_set; local in function:lower_tex_deref 1261 unsigned set = var->data.descriptor_set; local in function:lower_gfx7_tex_swizzle 1386 uint8_t set; member in struct:binding_info 1456 for (uint32_t set = 0; set < layout->num_sets; set++) { local in function:anv_nir_apply_pipeline_layout 1469 for (uint32_t set = 0; set < layout->num_sets; set++) { local in function:anv_nir_apply_pipeline_layout 1509 unsigned set = infos[i].set, b = infos[i].binding; local in function:anv_nir_apply_pipeline_layout 1597 const uint32_t set = var->data.descriptor_set; local in function:anv_nir_apply_pipeline_layout [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| H A D | panvk_vX_descriptor_set.c | 51 struct panvk_descriptor_set *set; local in function:panvk_per_arch 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 128 struct panvk_descriptor_set *set = NULL; local in function:panvk_per_arch [all...] |