Searched refs:slot (Results 1 - 25 of 470) 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/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/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/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/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();
H A Dnss_key_util.h20 // Generates a new RSA keypair of size |num_bits| in |slot|. Returns true on
24 PK11SlotInfo* slot,
30 // Imports a private key from |input| into |slot|. |input| is interpreted as a
35 ImportNSSKeyFromPrivateKeyInfo(PK11SlotInfo* slot,
46 // the private key half in the slot specified by |slot|. Returns the private key
50 PK11SlotInfo* slot);
/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...]
/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/v8/src/
H A Dtype-info.h29 InlineCacheState LoadInlineCacheState(FeedbackVectorSlot slot);
30 bool StoreIsUninitialized(FeedbackVectorSlot slot);
31 bool CallIsUninitialized(FeedbackVectorSlot slot);
32 bool CallIsMonomorphic(FeedbackVectorSlot slot);
33 bool CallNewIsMonomorphic(FeedbackVectorSlot slot);
41 void GetStoreModeAndKeyType(FeedbackVectorSlot slot,
45 void PropertyReceiverTypes(FeedbackVectorSlot slot, Handle<Name> name,
47 void KeyedPropertyReceiverTypes(FeedbackVectorSlot slot,
50 void AssignmentReceiverTypes(FeedbackVectorSlot slot, Handle<Name> name,
52 void KeyedAssignmentReceiverTypes(FeedbackVectorSlot slot,
[all...]
H A Dtype-feedback-vector.h20 // This kind means that the slot points to the middle of other slot
34 // This is a general purpose slot that occupies one feedback vector element.
104 FeedbackVectorSlotKind GetKind(int slot) const {
105 DCHECK(slot >= 0 && slot < slot_count_);
106 return kinds_[slot];
147 FeedbackVectorSlotKind GetKind(int slot) const {
148 return static_cast<FeedbackVectorSlotKind>(slot_kinds_.at(slot));
172 // 2..N: slot kind
507 LoadICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
515 LoadICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
532 LoadGlobalICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
536 LoadGlobalICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
565 KeyedLoadICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
573 KeyedLoadICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
597 StoreICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
605 StoreICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
623 KeyedStoreICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
631 KeyedStoreICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
658 BinaryOpICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
663 BinaryOpICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
689 CompareICNexus(Handle<TypeFeedbackVector> vector, FeedbackVectorSlot slot) argument
694 CompareICNexus(TypeFeedbackVector* vector, FeedbackVectorSlot slot) argument
[all...]
/external/testng/src/main/java/org/testng/reporters/util/
H A DStackTraceTools.java33 int slot=StackTraceTools.getTestRoot(stack, method);
34 if(slot>=0) {
35 StackTraceElement[] r=new StackTraceElement[stack.length-slot];
37 r[x]=stack[x+slot];
/external/v8/src/heap/
H A Dincremental-marking-inl.h15 void IncrementalMarking::RecordWrite(HeapObject* obj, Object** slot, argument
18 RecordWriteSlow(obj, slot, value);
23 void IncrementalMarking::RecordWriteOfCodeEntry(JSFunction* host, Object** slot, argument
26 RecordWriteOfCodeEntrySlow(host, slot, value);

Completed in 609 milliseconds

1234567891011>>