HomeSort by relevance Sort by last modified time
    Searched refs:slot (Results 1 - 25 of 970) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/threading/
thread_local_android.cc 13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
14 bool succeed = slot->Initialize(NULL);
19 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
20 slot.Free();
24 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
25 return slot.Get();
29 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
30 slot.Set(value);
thread_local_win.cc 15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
16 *slot = TlsAlloc();
17 CHECK_NE(*slot, TLS_OUT_OF_INDEXES);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
22 if (!TlsFree(slot)) {
23 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
29 return TlsGetValue(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
34 if (!TlsSetValue(slot, value))
    [all...]
thread_local_posix.cc 17 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
18 int error = pthread_key_create(slot, NULL);
23 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
24 int error = pthread_key_delete(slot);
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
30 return pthread_getspecific(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
35 int error = pthread_setspecific(slot, value);
  /external/chromium_org/mojo/public/cpp/utility/lib/
thread_local_win.cc 14 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
15 *slot = TlsAlloc();
16 assert(*slot != TLS_OUT_OF_INDEXES);
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
21 if (!TlsFree(slot)) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
28 return TlsGetValue(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
33 if (!TlsSetValue(slot, value)) {
thread_local_posix.cc 13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
14 if (pthread_key_create(slot, NULL) != 0) {
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
21 if (pthread_key_delete(slot) != 0) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
28 return pthread_getspecific(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
33 if (pthread_setspecific(slot, value) != 0) {
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
entry.h 40 entry_get_public(int slot);
43 entry_generate(int slot);
46 entry_patch(mapi_func entry, int slot);
entry_x86_tsd.h 43 #define STUB_ASM_CODE(slot) \
47 "jmp *(4 * " slot ")(%eax)\n" \
50 "jmp *(4 * " slot ")(%eax)"
72 entry_get_public(int slot)
74 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE);
78 entry_patch(mapi_func entry, int slot)
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
87 entry_generate(int slot)
99 entry_patch(entry, slot);
    [all...]
entry.c 79 entry_get_public(int slot)
82 return public_entries[slot];
86 entry_generate(int slot)
92 entry_patch(mapi_func entry, int slot)
  /external/mesa3d/src/mapi/mapi/
entry.h 40 entry_get_public(int slot);
43 entry_generate(int slot);
46 entry_patch(mapi_func entry, int slot);
entry_x86_tsd.h 43 #define STUB_ASM_CODE(slot) \
47 "jmp *(4 * " slot ")(%eax)\n" \
50 "jmp *(4 * " slot ")(%eax)"
72 entry_get_public(int slot)
74 return (mapi_func) (x86_entry_start + slot * X86_ENTRY_SIZE);
78 entry_patch(mapi_func entry, int slot)
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
87 entry_generate(int slot)
99 entry_patch(entry, slot);
    [all...]
entry.c 79 entry_get_public(int slot)
82 return public_entries[slot];
86 entry_generate(int slot)
92 entry_patch(mapi_func entry, int slot)
  /libcore/luni/src/main/java/java/io/
EmulatedFields.java 32 // A slot is a field plus its value
86 * Build emulated slots that correspond to emulated fields. A slot is a
118 ObjectSlot slot = findSlot(name, null); local
119 if (slot == null) {
122 return slot.defaulted;
132 * null}, no such compatibility checking is performed and the slot is
140 * corresponding slot is returned.
141 * @return the object slot, or {@code null} if there is no field with that
147 ObjectSlot slot = slotsToSerialize[i]; local
148 if (slot.field.getName().equals(fieldName))
174 ObjectSlot slot = new ObjectSlot(); local
186 ObjectSlot slot = findSlot(name, type); local
209 ObjectSlot slot = findMandatorySlot(name, byte.class); local
229 ObjectSlot slot = findMandatorySlot(name, char.class); local
249 ObjectSlot slot = findMandatorySlot(name, double.class); local
269 ObjectSlot slot = findMandatorySlot(name, float.class); local
289 ObjectSlot slot = findMandatorySlot(name, int.class); local
309 ObjectSlot slot = findMandatorySlot(name, long.class); local
329 ObjectSlot slot = findMandatorySlot(name, null); local
349 ObjectSlot slot = findMandatorySlot(name, short.class); local
369 ObjectSlot slot = findMandatorySlot(name, boolean.class); local
386 ObjectSlot slot = findMandatorySlot(name, byte.class); local
404 ObjectSlot slot = findMandatorySlot(name, char.class); local
422 ObjectSlot slot = findMandatorySlot(name, double.class); local
440 ObjectSlot slot = findMandatorySlot(name, float.class); local
458 ObjectSlot slot = findMandatorySlot(name, int.class); local
476 ObjectSlot slot = findMandatorySlot(name, long.class); local
498 ObjectSlot slot = findMandatorySlot(name, valueClass); local
516 ObjectSlot slot = findMandatorySlot(name, short.class); local
534 ObjectSlot slot = findMandatorySlot(name, boolean.class); local
    [all...]
  /external/freetype/src/base/
ftsynth.c 48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
51 FT_Outline* outline = &slot->outline;
55 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
85 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
87 FT_Library library = slot->library;
88 FT_Face face = slot->face;
93 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
94 slot->format != FT_GLYPH_FORMAT_BITMAP )
102 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE )
105 (void)FT_Outline_EmboldenXY( &slot->outline, xstr, ystr )
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftsynth.c 48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
51 FT_Outline* outline = &slot->outline;
55 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
85 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
87 FT_Library library = slot->library;
88 FT_Face face = slot->face;
93 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
94 slot->format != FT_GLYPH_FORMAT_BITMAP )
102 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE )
105 (void)FT_Outline_EmboldenXY( &slot->outline, xstr, ystr )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftsynth.c 48 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
51 FT_Outline* outline = &slot->outline;
55 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
85 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
87 FT_Library library = slot->library;
88 FT_Face face = slot->face;
93 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
94 slot->format != FT_GLYPH_FORMAT_BITMAP )
102 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE )
105 (void)FT_Outline_EmboldenXY( &slot->outline, xstr, ystr )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vs_exec.c 97 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 = 0; slot < shader->info.num_inputs; slot++)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_exec.c 97 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 = 0; slot < shader->info.num_inputs; slot++)
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftsynth.h 68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/freetype/include/
ftsynth.h 68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftsynth.h 68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftsynth.h 68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /external/chromium_org/v8/src/
feedback-slots.h 22 virtual void SetFirstFeedbackSlot(int slot) = 0;
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
loc_api_sync_call.c 86 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
88 pthread_mutex_init(&slot->lock, NULL);
89 pthread_cond_init(&slot->loc_cb_arrived_cond, NULL);
91 slot->not_available = 0;
92 slot->in_use = 0;
93 slot->loc_handle = -1;
94 slot->loc_cb_wait_event_mask = 0; /* event to wait */
95 slot->loc_cb_received_event_mask = 0; /* received event */
131 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
133 pthread_mutex_lock(&slot->lock)
203 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
254 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[i]; local
375 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
451 loc_sync_call_slot_s_type *slot = &loc_sync_data.slots[select_id]; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
hash.c 34 potentially hit every slot in the table during collision
80 /* Returns the address of the table slot matching `key'. If `key' is
81 not found, return the address of an empty slot suitable for
88 void **slot; local
97 slot = &ht->ht_vec[hash_1];
99 if (*slot == 0)
100 return (deleted_slot ? deleted_slot : slot);
101 if (*slot == hash_deleted_item)
104 deleted_slot = slot;
108 if (key == *slot)
123 void **slot = hash_find_slot (ht, key); local
130 void **slot = hash_find_slot (ht, item); local
160 void **slot = hash_find_slot (ht, item); local
226 void **slot; local
239 void **slot; local
270 void **slot = hash_find_slot (ht, *ovp); local
298 void **slot; local
    [all...]
  /frameworks/rs/
rsScript.cpp 44 void Script::setSlot(uint32_t slot, Allocation *a) {
45 //ALOGE("setSlot %i %p", slot, a);
46 if (slot >= mHal.info.exportedVariableCount) {
47 ALOGE("Script::setSlot unable to set allocation, invalid slot index");
51 mSlots[slot].set(a);
53 mRSC->mHal.funcs.script.setGlobalBind(mRSC, this, slot, a);
56 void Script::setVar(uint32_t slot, const void *val, size_t len) {
57 //ALOGE("setVar %i %p %i", slot, val, len);
58 if (slot >= mHal.info.exportedVariableCount) {
59 ALOGE("Script::setVar unable to set allocation, invalid slot index")
    [all...]

Completed in 1347 milliseconds

1 2 3 4 5 6 7 8 91011>>