Searched refs:slot (Results 1 - 25 of 259) sorted by relevance

1234567891011

/external/mesa3d/src/mapi/mapi/
H A Dentry.h40 entry_get_public(int slot);
43 entry_generate(int slot);
46 entry_patch(mapi_func entry, int slot);
H A Dentry_x86_tsd.h43 #define STUB_ASM_CODE(slot) \
47 "jmp *(4 * " slot ")(%eax)\n" \
50 "jmp *(4 * " slot ")(%eax)"
72 entry_get_public(int slot) argument
74 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE);
78 entry_patch(mapi_func entry, int slot) argument
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
87 entry_generate(int slot) argument
99 entry_patch(entry, slot);
[all...]
H A Dentry.c79 entry_get_public(int slot) argument
82 return public_entries[slot];
86 entry_generate(int slot) argument
92 entry_patch(mapi_func entry, int slot) argument
H A Dtable.h53 * Set the function of a slot.
56 table_set_func(struct mapi_table *tbl, int slot, mapi_func func) argument
59 funcs[slot] = func;
63 * Return the function of a slot.
66 table_get_func(const struct mapi_table *tbl, int slot) argument
69 return funcs[slot];
H A Dentry_x86-64_tls.h54 #define STUB_ASM_CODE(slot) \
57 "jmp *(8 * " slot ")(%r11)"
83 entry_get_public(int slot) argument
85 return (mapi_func) (x86_64_entry_start + slot * 32);
89 entry_patch(mapi_func entry, int slot) argument
92 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
96 entry_generate(int slot) argument
121 entry_patch(entry, slot);
H A Dentry_x86_tls.h68 #define STUB_ASM_CODE(slot) \
71 "jmp *(4 * " slot ")(%eax)"
110 entry_get_public(int slot) argument
112 return (mapi_func) (x86_entry_start + slot * 16);
116 entry_patch(mapi_func entry, int slot) argument
119 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func);
123 entry_generate(int slot) argument
141 entry_patch(entry, slot);
H A Dstub.c43 int slot; member in struct:mapi_stub
102 /* minus 1 to make sure we can never reach the last slot */
108 /* dispatch to the last slot, which is reserved for no-op */
116 stub->slot = -1;
159 int slot; local
161 if (stub->slot >= 0)
165 slot = alias->slot;
167 slot = next_dynamic_slot++;
169 entry_patch(stub->addr, slot);
[all...]
/external/freetype/src/base/
H A Dftsynth.c48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
54 if ( !slot )
57 outline = &slot->outline;
60 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
90 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
98 if ( !slot )
101 library = slot->library;
102 face = slot->face;
104 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
105 slot
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftsynth.c48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
54 if ( !slot )
57 outline = &slot->outline;
60 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
90 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
98 if ( !slot )
101 library = slot->library;
102 face = slot->face;
104 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
105 slot
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1099.js33 var slot = "foo"; return function (a) { return slot === a; }
37 var slot = "bar";
40 return slot === 'bar';
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_exec.c97 unsigned slot; local
118 for (slot = 0; slot < shader->info.num_inputs; slot++) {
119 debug_printf("\t%d: %f %f %f %f\n", slot,
120 input[slot][0],
121 input[slot][1],
122 input[slot][2],
123 input[slot][3]);
133 for (slot
[all...]
/external/freetype/include/
H A Dftsynth.h70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/pdfium/third_party/freetype/include/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c62 unsigned slot,
66 info->a0[slot][i] = value;
67 info->dadx[slot][i] = 0.0f;
68 info->dady[slot][i] = 0.0f;
75 unsigned slot,
89 info->a0[slot][i] = info->v0[slot][i]*w0;
90 info->dadx[slot][i] = 0.0f;
91 info->dady[slot][i] = 0.0f;
97 * \param slot th
60 constant_coef(struct lp_setup_context *setup, struct point_info *info, unsigned slot, const float value, unsigned i) argument
73 point_persp_coeff(struct lp_setup_context *setup, const struct point_info *info, unsigned slot, unsigned i) argument
104 texcoord_coef(struct lp_setup_context *setup, const struct point_info *info, unsigned slot, unsigned i, unsigned sprite_coord_origin, boolean perspective) argument
171 setup_point_fragcoord_coef(struct lp_setup_context *setup, struct point_info *info, unsigned slot, unsigned usage_mask) argument
212 unsigned slot; local
[all...]
/external/deqp/framework/delibs/depool/
H A DdePoolHash.h220 TYPENAME##Slot* slot = hash->slotTable[slotNdx]; \
221 while (slot) \
223 TYPENAME##Slot* nextSlot = slot->nextSlot; \
224 slot->nextSlot = hash->slotFreeList; \
225 hash->slotFreeList = slot; \
226 slot->numUsed = 0; \
227 slot = nextSlot; \
236 TYPENAME##Slot* slot; \
239 slot = hash->slotFreeList; \
243 slot
[all...]
H A DdePoolSet.h228 TYPENAME##Slot* slot = set->slotTable[slotNdx]; \
229 while (slot) \
231 TYPENAME##Slot* nextSlot = slot->nextSlot; \
232 slot->nextSlot = set->slotFreeList; \
233 set->slotFreeList = slot; \
234 slot->numUsed = 0; \
235 slot = nextSlot; \
244 TYPENAME##Slot* slot; \
247 slot = set->slotFreeList; \
251 slot
[all...]
/external/webp/src/utils/
H A Dquant_levels.c78 int s, slot = 0; local
82 // Keep track of the nearest neighbour 'slot'
83 while (slot < num_levels - 1 &&
84 2 * s > inv_q_level[slot] + inv_q_level[slot + 1]) {
85 ++slot;
88 q_sum[slot] += s * freq[s];
89 q_count[slot] += freq[s];
91 q_level[s] = slot;
96 for (slot
126 const int slot = q_level[s]; local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/app/
H A DTestIDList.java83 static void enable(int slot){ argument
84 System.out.println("Enabled SLOT["+slot+"]");
85 if (enabledSlots[slot] == true){
88 enabledSlots[slot] = true;
91 static void disable(int slot){ argument
92 System.out.println("Disabled SLOT["+slot+"]");
93 if (enabledSlots[slot] == false){
96 enabledSlots[slot] = false;
99 static void setSlot(int slot, Object val){ argument
100 if (!list.moveToNew(slot)){
[all...]
/external/freetype/src/autofit/
H A Dafloader.c95 FT_GlyphSlot slot = face->glyph; local
96 FT_Slot_Internal internal = slot->internal;
120 switch ( slot->format )
125 FT_Outline_Translate( &slot->outline,
133 loader->pp2.x = FT_MulFix( slot->metrics.horiAdvance,
138 if ( slot->outline.n_points == 0 )
141 /* now load the slot image into the auto-outline and run the */
200 slot->lsb_delta = loader->pp1.x - pp1x_uh;
201 slot->rsb_delta = loader->pp2.x - pp2x_uh;
212 slot
[all...]
/external/v8/src/
H A Dfeedback-slots.h22 virtual void SetFirstFeedbackSlot(int slot) = 0;
/external/kernel-headers/original/uapi/linux/
H A Dpci.h24 * devices. The slot/function address of each device is encoded
27 * 7:3 = slot
30 #define PCI_DEVFN(slot, func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
/external/freetype/src/smooth/
H A Dftsmooth.c60 FT_GlyphSlot slot,
67 if ( slot->format != render->glyph_format )
74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
87 FT_GlyphSlot slot,
92 if ( slot->format == render->glyph_format )
93 FT_Outline_Get_CBox( &slot->outline, cbox );
97 /* convert a slot's glyph image into a bitmap */
100 FT_GlyphSlot slot,
106 FT_Outline* outline = &slot
59 ft_smooth_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
86 ft_smooth_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
99 ft_smooth_render_generic( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin, FT_Render_Mode required_mode ) argument
382 ft_smooth_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
397 ft_smooth_render_lcd( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
415 ft_smooth_render_lcd_v( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/pdfium/third_party/freetype/src/smooth/
H A Dftsmooth.c60 FT_GlyphSlot slot,
67 if ( slot->format != render->glyph_format )
74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
87 FT_GlyphSlot slot,
92 if ( slot->format == render->glyph_format )
93 FT_Outline_Get_CBox( &slot->outline, cbox );
97 /* convert a slot's glyph image into a bitmap */
100 FT_GlyphSlot slot,
106 FT_Outline* outline = &slot
59 ft_smooth_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
86 ft_smooth_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
99 ft_smooth_render_generic( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin, FT_Render_Mode required_mode ) argument
382 ft_smooth_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
397 ft_smooth_render_lcd( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
415 ft_smooth_render_lcd_v( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_program.c215 unsigned slot = stvp->num_outputs++; local
217 stvp->result_to_output[attr] = slot;
221 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
222 stvp->output_semantic_index[slot] = 0;
225 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
226 stvp->output_semantic_index[slot] = 0;
229 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
230 stvp->output_semantic_index[slot] = 1;
233 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
234 stvp->output_semantic_index[slot]
539 const GLuint slot = fs_num_inputs++; local
855 const GLuint slot = gs_num_inputs; local
923 GLuint slot; local
[all...]
/external/elfutils/src/lib/
H A Dfixedsizehash.h175 struct CONCAT(PREFIX,fshashent) *slot;
177 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
178 if (slot->hval != 0)
182 slot->hval = hval;
184 slot->entry = data;
186 slot->entry = *data;
199 struct CONCAT(PREFIX,fshashent) *slot;
201 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
202 if (slot->hval != 0)
206 slot
[all...]

Completed in 980 milliseconds

1234567891011