| /xsrc/external/mit/MesaLib.old/dist/src/mapi/ |
| H A D | entry.h | 38 entry_get_public(int slot); 41 entry_generate(int slot); 44 entry_patch(mapi_func entry, int slot);
|
| H A D | entry_x86_tsd.h | 46 #define STUB_ASM_CODE(slot) \ 50 "jmp *(4 * " slot ")(%eax)\n" \ 53 "jmp *(4 * " slot ")(%eax)" 75 entry_get_public(int slot) argument 77 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE); 81 entry_patch(mapi_func entry, int slot) argument 85 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func); 86 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func); 90 entry_generate(int slot) argument 102 entry_patch(entry, slot); [all...] |
| H A D | entry_x86-64_tls.h | 47 #define STUB_ASM_CODE(slot) \ 52 "jmp *(8 * " slot ")(%r11)\n\t" \ 55 "jmp *(8 * " slot ")(%rax)" 57 #define STUB_ASM_CODE(slot) \ 60 "jmp *(8 * " slot ")(%r11)" 65 #define STUB_ASM_CODE(slot) \ 68 "movl 4*" slot "(%r11d), %r11d\n\t" \ 90 entry_get_public(int slot) argument 92 return (mapi_func) (x86_64_entry_start + slot * 64); 96 entry_patch(mapi_func entry, int slot) argument 107 entry_generate(int slot) argument [all...] |
| H A D | stub.c | 42 int slot; member in struct:mapi_stub 93 /* minus 1 to make sure we can never reach the last slot */ 99 /* dispatch to the last slot, which is reserved for no-op */ 107 stub->slot = -1; 149 int slot) 153 if (table[i].slot == slot) 160 stub_find_by_slot(int slot) argument 163 search_table_by_slot(public_stubs, ARRAY_SIZE(public_stubs), slot); 166 return search_table_by_slot(dynamic_stubs, num_dynamic_stubs, slot); 148 search_table_by_slot(const struct mapi_stub * table,size_t num_entries,int slot) argument 172 int slot; local in function:stub_fix_dynamic [all...] |
| H A D | entry_x86_tls.h | 74 #define STUB_ASM_CODE(slot) \ 77 "jmp *(4 * " slot ")(%eax)" 79 #define STUB_ASM_CODE(slot) \ 82 "jmp *(4 * " slot ")(%eax)" 122 entry_get_public(int slot) argument 124 return (mapi_func) (x86_entry_start + slot * 16); 128 entry_patch(mapi_func entry, int slot) argument 131 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func); 135 entry_generate(int slot) argument 153 entry_patch(entry, slot); [all...] |
| H A D | entry.c | 88 entry_get_public(int slot) argument 91 return public_entries[slot]; 95 entry_generate(int slot) argument 101 entry_patch(mapi_func entry, int slot) argument
|
| H A D | table.h | 62 * Set the function of a slot. 65 table_set_func(struct _glapi_table *tbl, int slot, mapi_func func) argument 68 funcs[slot] = func; 72 * Return the function of a slot. 75 table_get_func(const struct _glapi_table *tbl, int slot) argument 78 return funcs[slot];
|
| H A D | entry_ppc64le_tls.h | 57 #define STUB_ASM_CODE(slot) \ 62 " ld 12, " slot "*8(11)\n\t" \ 83 entry_get_public(int slot) argument 85 return (mapi_func) (ppc64le_entry_start + slot * PPC64LE_ENTRY_SIZE); 102 // data to the dispatch stub, and then it will patch the slot number and 121 0, 0 // <ENTRY+48>: .quad <slot>*8 127 entry_patch(mapi_func entry, int slot) argument 131 *((uint64_t *) (code + TEMPLATE_OFFSET_SLOT)) = slot * sizeof(mapi_func); 135 entry_generate(int slot) argument 147 entry_patch(entry, slot); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/ |
| H A D | entry.h | 38 entry_get_public(int slot); 41 entry_generate(int slot); 44 entry_patch(mapi_func entry, int slot);
|
| H A D | stub.c | 42 int slot; member in struct:mapi_stub 93 /* minus 1 to make sure we can never reach the last slot */ 99 /* dispatch to the last slot, which is reserved for no-op */ 107 stub->slot = -1; 149 int slot) 153 if (table[i].slot == slot) 160 stub_find_by_slot(int slot) argument 163 search_table_by_slot(public_stubs, ARRAY_SIZE(public_stubs), slot); 166 return search_table_by_slot(dynamic_stubs, num_dynamic_stubs, slot); 148 search_table_by_slot(const struct mapi_stub * table,size_t num_entries,int slot) argument 172 int slot; local in function:stub_fix_dynamic [all...] |
| H A D | entry_x86-64_tls.h | 53 #define STUB_ASM_CODE(slot) \ 58 "jmp *(8 * " slot ")(%r11)\n\t" \ 61 "jmp *(8 * " slot ")(%rax)" 63 #define STUB_ASM_CODE(slot) \ 67 "jmp *(8 * " slot ")(%r11)" 72 #define STUB_ASM_CODE(slot) \ 76 "movl 4*" slot "(%r11d), %r11d\n\t" \ 98 entry_get_public(int slot) argument 100 return (mapi_func) (x86_64_entry_start + slot * 64); 104 entry_patch(mapi_func entry, int slot) argument 115 entry_generate(int slot) argument [all...] |
| H A D | entry_x86_tls.h | 81 #define STUB_ASM_CODE(slot) \ 89 "jmp *(4 * " slot ")(%eax)" 119 int slot = 0; local in function:entry_patch_public 121 entry += X86_ENTRY_SIZE, ++slot) 122 entry_generate_or_patch(slot, entry, X86_ENTRY_SIZE); 127 entry_get_public(int slot) argument 129 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE); 133 entry_patch(mapi_func entry, int slot) argument 136 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func); 140 entry_generate_or_patch(int slot, cha argument 166 entry_generate(int slot) argument [all...] |
| H A D | entry.c | 88 entry_get_public(int slot) argument 91 return public_entries[slot]; 95 entry_generate(int slot) argument 101 entry_patch(mapi_func entry, int slot) argument
|
| H A D | table.h | 62 * Set the function of a slot. 65 table_set_func(struct _glapi_table *tbl, int slot, mapi_func func) argument 68 funcs[slot] = func; 72 * Return the function of a slot. 75 table_get_func(const struct _glapi_table *tbl, int slot) argument 78 return funcs[slot];
|
| H A D | entry_ppc64le_tls.h | 57 #define STUB_ASM_CODE(slot) \ 62 " ld 12, " slot "*8(11)\n\t" \ 83 entry_get_public(int slot) argument 85 return (mapi_func) (ppc64le_entry_start + slot * PPC64LE_ENTRY_SIZE); 102 // data to the dispatch stub, and then it will patch the slot number and 121 0, 0 // <ENTRY+48>: .quad <slot>*8 127 entry_patch(mapi_func entry, int slot) argument 131 *((uint64_t *) (code + TEMPLATE_OFFSET_SLOT)) = slot * sizeof(mapi_func); 135 entry_generate(int slot) argument 147 entry_patch(entry, slot); [all...] |
| H A D | entry_x86_tsd.h | 64 #define STUB_ASM_CODE(slot) \ 81 "jmp *(4 * " slot ")(%eax)\n\t" \ 121 entry_get_public(int slot) argument 123 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE); 127 entry_patch(mapi_func entry, int slot) argument 131 *((unsigned long *) (code + offset)) = slot * sizeof(mapi_func); 135 entry_generate(int slot) argument 150 entry_patch(entry, slot);
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | ftsynth.c | 47 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ) argument 53 if ( !slot ) 56 outline = &slot->outline; 59 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE ) 89 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ) argument 97 if ( !slot ) 100 library = slot->library; 101 face = slot->face; 103 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE && 104 slot [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_vs_exec.c | 102 unsigned slot; local in function:vs_exec_run_linear 124 for (slot = 0; slot < shader->info.num_inputs; slot++) { 125 debug_printf("\t%d: %f %f %f %f\n", slot, 126 input[slot][0], 127 input[slot][1], 128 input[slot][2], 129 input[slot][3]); 150 for (slot [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_vs_exec.c | 105 unsigned slot; local in function:vs_exec_run_linear 127 for (slot = 0; slot < shader->info.num_inputs; slot++) { 128 debug_printf("\t%d: %f %f %f %f\n", slot, 129 input[slot][0], 130 input[slot][1], 131 input[slot][2], 132 input[slot][3]); 153 for (slot [all...] |
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| H A D | ftsynth.h | 69 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); 73 FT_GlyphSlot_Oblique( FT_GlyphSlot slot );
|
| /xsrc/external/mit/libdrm/dist/tests/tegra/ |
| H A D | vic41.h | 36 #define NVB1B6_VIDEO_COMPOSITOR_SET_HISTORY_BUFFER_OFFSET(slot) (0x00000780 + (slot) * 4) 37 #define NVB1B6_VIDEO_COMPOSITOR_SET_SURFACE0_LUMA_OFFSET(slot) (0x00001200 + (slot) * 0x00000060) 38 #define NVB1B6_VIDEO_COMPOSITOR_SET_SURFACE0_CHROMA_U_OFFSET(slot) (0x00001204 + (slot) * 0x00000060) 39 #define NVB1B6_VIDEO_COMPOSITOR_SET_SURFACE0_CHROMA_V_OFFSET(slot) (0x00001208 + (slot) * 0x00000060) 40 #define NVB1B6_VIDEO_COMPOSITOR_SET_SURFACE1_LUMA_OFFSET(slot) (0x0000120c + (slot) * [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_vue_map.c | 47 assign_vue_slot(struct brw_vue_map *vue_map, int varying, int slot) argument 49 /* Make sure this varying hasn't been assigned a slot already */ 52 vue_map->varying_to_slot[varying] = slot; 53 vue_map->slot_to_varying[slot] = varying; 75 * read/write gl_ClipDistance, which has a fixed slot location. 76 * We have to assume the worst and reserve a slot for it, or else 77 * the rest of our varyings will be off by a slot. 90 * are stored in the first VUE slot (VARYING_SLOT_PSIZ). 107 int slot = 0; local in function:brw_compute_vue_map 124 assign_vue_slot(vue_map, VARYING_SLOT_PSIZ, slot 243 int slot = 0; local in function:brw_compute_tess_vue_map 281 varying_name(brw_varying_slot slot,gl_shader_stage stage) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_vue_map.c | 47 assign_vue_slot(struct brw_vue_map *vue_map, int varying, int slot) argument 49 /* Make sure this varying hasn't been assigned a slot already */ 52 vue_map->varying_to_slot[varying] = slot; 53 vue_map->slot_to_varying[slot] = varying; 74 * read/write gl_ClipDistance, which has a fixed slot location. 75 * We have to assume the worst and reserve a slot for it, or else 76 * the rest of our varyings will be off by a slot. 89 * are stored in the first VUE slot (VARYING_SLOT_PSIZ). 106 int slot = 0; local in function:brw_compute_vue_map 123 assign_vue_slot(vue_map, VARYING_SLOT_PSIZ, slot 226 int slot = 0; local in function:brw_compute_tess_vue_map 264 varying_name(brw_varying_slot slot) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/raster/ |
| H A D | ftrend1.c | 54 FT_GlyphSlot slot, 61 if ( slot->format != render->glyph_format ) 68 FT_Outline_Transform( &slot->outline, matrix ); 71 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); 81 FT_GlyphSlot slot, 86 if ( slot->format == render->glyph_format ) 87 FT_Outline_Get_CBox( &slot->outline, cbox ); 91 /* convert a slot's glyph image into a bitmap */ 94 FT_GlyphSlot slot, 99 FT_Outline* outline = &slot 53 ft_raster1_transform(FT_Renderer render,FT_GlyphSlot slot,const FT_Matrix * matrix,const FT_Vector * delta) argument 80 ft_raster1_get_cbox(FT_Renderer render,FT_GlyphSlot slot,FT_BBox * cbox) argument 93 ft_raster1_render(FT_Renderer render,FT_GlyphSlot slot,FT_Render_Mode mode,const FT_Vector * origin) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_setup_point.c | 66 unsigned slot, 70 info->a0[slot][i] = value; 71 info->dadx[slot][i] = 0.0f; 72 info->dady[slot][i] = 0.0f; 79 unsigned slot, 93 info->a0[slot][i] = info->v0[slot][i]*w0; 94 info->dadx[slot][i] = 0.0f; 95 info->dady[slot][i] = 0.0f; 101 * \param slot th 64 constant_coef(struct lp_setup_context * setup,struct point_info * info,unsigned slot,const float value,unsigned i) argument 77 point_persp_coeff(struct lp_setup_context * setup,const struct point_info * info,unsigned slot,unsigned i) argument 108 texcoord_coef(struct lp_setup_context * setup,const struct point_info * info,unsigned slot,unsigned i,unsigned sprite_coord_origin,boolean perspective) argument 175 setup_point_fragcoord_coef(struct lp_setup_context * setup,struct point_info * info,unsigned slot,unsigned usage_mask) argument 216 unsigned slot; local in function:setup_point_coefficients [all...] |