Searched defs:slot (Results 1 - 25 of 170) sorted by relevance

1234567

/external/freetype/include/
H A Dftsynth.h70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h133 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
191 /* Make sure that a glyph slot owns `slot->bitmap'. */
194 /* slot :: The glyph slot. */
204 FT_GlyphSlot_Own_Bitmap( 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
H A Dftbitmap.h125 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
183 /* Make sure that a glyph slot owns `slot->bitmap'. */
186 /* slot :: The glyph slot. */
196 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/elfutils/src/libdwfl/
H A Ddwfl_module_dwarf_cfi.c34 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) argument
43 if (slot == &mod->eh_cfi)
50 return *slot = cfi;
/external/android-clat/
H A Dring.h48 int slot, numslots; member in struct:packet_ring
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dregs.c40 unsigned long slot = local
43 return (void *)(ip | slot);
51 unsigned long slot = (unsigned long)addr & 0xf; local
55 psr |= (slot & 0x3) << 41;
/external/mesa3d/src/mapi/mapi/
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 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 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 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 Dmapi.c175 int slot = stub_get_slot(stub); local
179 func = table_get_func(noop, slot);
180 table_set_func(tbl, slot, func);
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/compiler-rt/lib/sanitizer_common/tests/
H A Dstandalone_malloc_test.cc40 size_t slot = i % allocated.size(); local
41 char *p = allocated[slot].first;
43 size_t size = allocated[slot].second;
45 swap(allocated[slot], allocated.back());
/external/lzma/C/
H A DBraIA64.c25 int slot; local
26 for (slot = 0; slot < 3; slot++, bitPos += 41)
31 if (((mask >> slot) & 1) == 0)
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_derived.c160 uint slot = find_mapping(fs, I915_SEMANTIC_FACE); local
168 vinfo.hwfmt[1] &= ~(TEXCOORDFMT_NOT_PRESENT << (slot * 4));
169 vinfo.hwfmt[1] |= TEXCOORDFMT_1D << (slot * 4);
/external/pdfium/third_party/freetype/src/raster/
H A Dftrend1.c61 FT_GlyphSlot slot,
68 if ( slot->format != render->glyph_format )
75 FT_Outline_Transform( &slot->outline, matrix );
78 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
88 FT_GlyphSlot slot,
93 if ( slot->format == render->glyph_format )
94 FT_Outline_Get_CBox( &slot->outline, cbox );
98 /* convert a slot's glyph image into a bitmap */
101 FT_GlyphSlot slot,
116 if ( slot
60 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
87 ft_raster1_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
100 ft_raster1_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/v8/src/heap/
H A Dmark-compact-inl.h57 void MarkCompactCollector::RecordSlot(Object** anchor_slot, Object** slot, argument
64 object_page->slots_buffer_address(), slot, mode)) {
/external/freetype/src/raster/
H A Dftrend1.c61 FT_GlyphSlot slot,
68 if ( slot->format != render->glyph_format )
75 FT_Outline_Transform( &slot->outline, matrix );
78 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
88 FT_GlyphSlot slot,
93 if ( slot->format == render->glyph_format )
94 FT_Outline_Get_CBox( &slot->outline, cbox );
98 /* convert a slot's glyph image into a bitmap */
101 FT_GlyphSlot slot,
116 if ( slot
60 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
87 ft_raster1_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
100 ft_raster1_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[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/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs.c54 * \param slot which constant buffer in [0, PIPE_MAX_CONSTANT_BUFFERS-1]
60 unsigned slot,
69 if (size > draw->vs.const_storage_size[slot]) {
70 if (draw->vs.aligned_constant_storage[slot]) {
71 align_free((void *)draw->vs.aligned_constant_storage[slot]);
72 draw->vs.const_storage_size[slot] = 0;
74 draw->vs.aligned_constant_storage[slot] =
76 if (draw->vs.aligned_constant_storage[slot]) {
77 draw->vs.const_storage_size[slot] = size;
81 if (draw->vs.aligned_constant_storage[slot]) {
59 draw_vs_set_constants(struct draw_context *draw, unsigned slot, const void *constants, unsigned size) argument
[all...]
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/pdfium/third_party/freetype/src/cid/
H A Dcidobjs.h65 /* A handle to a Type 1 glyph slot object. */
115 cid_slot_done( FT_GlyphSlot slot ); variable
118 cid_slot_init( FT_GlyphSlot slot ); variable
/external/pdfium/third_party/freetype/src/type1/
H A Dt1objs.h54 /* A handle to a Type 1 glyph slot object. */
114 /* Type 1 glyph slot record. */
143 T1_GlyphSlot_Init( FT_GlyphSlot slot ); variable
146 T1_GlyphSlot_Done( FT_GlyphSlot slot ); variable

Completed in 586 milliseconds

1234567