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

1234567891011>>

/external/libmojo/base/threading/
H A Dthread_local_android.cc11 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
12 slot->Initialize(nullptr);
16 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
17 slot.Free();
21 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
22 return slot.Get();
26 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
27 slot.Set(value);
/external/mesa3d/src/mapi/
H A Dentry.h38 entry_get_public(int slot);
41 entry_generate(int slot);
44 entry_patch(mapi_func entry, int slot);
H A Dentry_x86_tsd.h46 #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 Dstub.c42 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
[all...]
H A Dentry_x86-64_tls.h46 #define STUB_ASM_CODE(slot) \
49 "jmp *(8 * " slot ")(%r11)"
53 #define STUB_ASM_CODE(slot) \
56 "movl 4*" slot "(%r11d), %r11d\n\t" \
78 entry_get_public(int slot) argument
80 return (mapi_func) (x86_64_entry_start + slot * 32);
84 entry_patch(mapi_func entry, int slot) argument
91 *((unsigned int *) (code + offset)) = slot * sizeof(mapi_func);
95 entry_generate(int slot) argument
130 entry_patch(entry, slot);
[all...]
H A Dentry.c80 entry_get_public(int slot) argument
83 return public_entries[slot];
87 entry_generate(int slot) argument
93 entry_patch(mapi_func entry, int slot) argument
H A Dtable.h62 * Set the function of a slot.
65 table_set_func(struct mapi_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 mapi_table *tbl, int slot) argument
78 return funcs[slot];
H A Dentry_x86_tls.h59 #define STUB_ASM_CODE(slot) \
62 "jmp *(4 * " slot ")(%eax)"
101 entry_get_public(int slot) argument
103 return (mapi_func) (x86_entry_start + slot * 16);
107 entry_patch(mapi_func entry, int slot) argument
110 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func);
114 entry_generate(int slot) argument
132 entry_patch(entry, slot);
/external/libchrome/base/threading/
H A Dthread_local_posix.cc18 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
19 int error = pthread_key_create(slot, NULL);
24 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
25 int error = pthread_key_delete(slot);
30 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
31 return pthread_getspecific(slot);
35 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
36 int error = pthread_setspecific(slot, value);
/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/mesa3d/src/gallium/auxiliary/nir/
H A Dtgsi_to_nir.h30 varying_slot_to_tgsi_semantic(gl_varying_slot slot,
33 frag_result_to_tgsi_semantic(gl_frag_result slot,
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_exec.c99 unsigned slot; local
121 for (slot = 0; slot < shader->info.num_inputs; slot++) {
122 debug_printf("\t%d: %f %f %f %f\n", slot,
123 input[slot][0],
124 input[slot][1],
125 input[slot][2],
126 input[slot][3]);
148 for (slot
[all...]
/external/freetype/include/freetype/
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/freetype/
H A Dftsynth.h70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/flatbuffers/tests/FlatBuffers.Test/
H A DTestTable.cs20 /// A test Table object that gives easy access to the slot data
32 public bool GetSlot(int slot, bool def) argument
34 var off = t.__offset(slot);
43 public sbyte GetSlot(int slot, sbyte def) argument
45 var off = t.__offset(slot);
54 public byte GetSlot(int slot, byte def) argument
56 var off = t.__offset(slot);
65 public short GetSlot(int slot, short def) argument
67 var off = t.__offset(slot);
76 public ushort GetSlot(int slot, ushor argument
87 GetSlot(int slot, int def) argument
98 GetSlot(int slot, uint def) argument
109 GetSlot(int slot, long def) argument
120 GetSlot(int slot, ulong def) argument
131 GetSlot(int slot, float def) argument
142 GetSlot(int slot, double def) argument
[all...]
/external/libchrome/crypto/
H A Dscoped_test_system_nss_key_slot.cc17 ScopedPK11Slot(PK11_ReferenceSlot(test_db_->slot())));
28 PK11SlotInfo* ScopedTestSystemNSSKeySlot::slot() const { function in class:crypto::ScopedTestSystemNSSKeySlot
29 return test_db_->slot();
/external/mesa3d/src/gallium/drivers/ilo/shader/
H A Dtoy_tgsi.h101 * Find the slot of the TGSI input.
106 int slot; local
108 for (slot = 0; slot < tgsi->num_inputs; slot++) {
109 if (tgsi->inputs[slot].index == index)
110 return slot;
117 * Find the slot of the TGSI system value.
122 int slot; local
124 for (slot
[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...]
/external/webp/src/utils/
H A Dquant_levels_utils.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/avb/boot_control/
H A Dboot_control_avb.c60 avb_errorv("Unexpected slot suffix '", propbuf, "'.\n", NULL);
76 unsigned int slot) {
77 if (avb_ab_mark_slot_active(ops->ab_ops, slot) == AVB_IO_RESULT_OK) {
85 unsigned int slot) {
86 if (avb_ab_mark_slot_unbootable(ops->ab_ops, slot) == AVB_IO_RESULT_OK) {
94 unsigned int slot) {
98 avb_assert(slot < 2);
104 is_bootable = (ab_data.slots[slot].priority > 0) &&
105 (ab_data.slots[slot].successful_boot ||
106 (ab_data.slots[slot]
75 module_setActiveBootSlot(boot_control_module_t* module, unsigned int slot) argument
84 module_setSlotAsUnbootable(struct boot_control_module* module, unsigned int slot) argument
93 module_isSlotBootable(struct boot_control_module* module, unsigned int slot) argument
111 module_isSlotMarkedSuccessful(struct boot_control_module* module, unsigned int slot) argument
127 module_getSuffix(boot_control_module_t* module, unsigned int slot) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vue_map.c46 assign_vue_slot(struct brw_vue_map *vue_map, int varying, int slot) argument
48 /* Make sure this varying hasn't been assigned a slot already */
51 vue_map->varying_to_slot[varying] = slot;
52 vue_map->slot_to_varying[slot] = varying;
73 * read/write gl_ClipDistance, which has a fixed slot location.
74 * We have to assume the worst and reserve a slot for it, or else
75 * the rest of our varyings will be off by a slot.
88 * are stored in the first VUE slot (VARYING_SLOT_PSIZ).
105 int slot = 0; local
122 assign_vue_slot(vue_map, VARYING_SLOT_PSIZ, slot
225 int slot = 0; local
263 varying_name(brw_varying_slot slot) argument
[all...]
/external/v8/src/
H A Dtype-info.h29 InlineCacheState LoadInlineCacheState(FeedbackSlot slot);
30 bool StoreIsUninitialized(FeedbackSlot slot);
31 bool CallIsUninitialized(FeedbackSlot slot);
32 bool CallIsMonomorphic(FeedbackSlot slot);
33 bool CallNewIsMonomorphic(FeedbackSlot slot);
41 void GetStoreModeAndKeyType(FeedbackSlot slot,
45 void PropertyReceiverTypes(FeedbackSlot slot, Handle<Name> name,
47 void KeyedPropertyReceiverTypes(FeedbackSlot slot,
50 void AssignmentReceiverTypes(FeedbackSlot slot, Handle<Name> name,
52 void KeyedAssignmentReceiverTypes(FeedbackSlot slot,
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/pa/
H A Dffi.c147 unsigned int slot = FIRST_ARG_SLOT; local
164 *(SINT32 *)(stack - slot) = *(SINT8 *)(*p_argv);
168 *(UINT32 *)(stack - slot) = *(UINT8 *)(*p_argv);
172 *(SINT32 *)(stack - slot) = *(SINT16 *)(*p_argv);
176 *(UINT32 *)(stack - slot) = *(UINT16 *)(*p_argv);
182 debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv),
183 slot);
184 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv);
189 /* Align slot for 64-bit type. */
190 slot
428 unsigned int slot = FIRST_ARG_SLOT; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c66 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
[all...]

Completed in 624 milliseconds

1234567891011>>