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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/base/threading/
thread_local_win.cc 16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
17 slot = TlsAlloc();
18 CHECK_NE(slot, TLS_OUT_OF_INDEXES);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
23 if (!TlsFree(slot)) {
24 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
30 return TlsGetValue(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
35 if (!TlsSetValue(slot, value))
    [all...]
thread_local_posix.cc 16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
17 int error = pthread_key_create(&slot, NULL);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
23 int error = pthread_key_delete(slot);
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
29 return pthread_getspecific(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
34 int error = pthread_setspecific(slot, value);
  /external/chromium_org/base/threading/
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 15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
16 int error = pthread_key_create(slot, NULL);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
22 int error = pthread_key_delete(slot);
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
28 return pthread_getspecific(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
33 int error = pthread_setspecific(slot, value);
  /external/chromium_org/mojo/public/utility/
thread_local_win.cc 15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
16 *slot = TlsAlloc();
17 assert(*slot != TLS_OUT_OF_INDEXES);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
22 if (!TlsFree(slot)) {
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
29 return TlsGetValue(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
34 if (!TlsSetValue(slot, value)) {
thread_local_posix.cc 15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
16 if (pthread_key_create(slot, NULL) != 0) {
22 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
23 if (pthread_key_delete(slot) != 0) {
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
30 return pthread_getspecific(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
35 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/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/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/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/freetype/
ftsynth.h 68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
  /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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_point.c 62 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 the vertex attribute slot to setu
212 unsigned slot; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_point.c 62 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 the vertex attribute slot to setu
212 unsigned 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...]
  /external/chromium_org/net/base/
keygen_handler_nss.cc 23 crypto::ScopedPK11Slot slot; local
25 slot = crypto_module_delegate_->RequestSlot().Pass();
27 slot.reset(crypto::GetPrivateNSSKeySlot());
28 if (!slot.get()) {
29 LOG(ERROR) << "Couldn't get private key slot from NSS!";
36 slot.get(),
39 LOG(ERROR) << "Couldn't authenticate to private key slot!";
44 slot.get(), stores_key_);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/slot/
slot.hpp 16 # include <boost/preprocessor/slot/detail/def.hpp>
22 # define BOOST_PP_ASSIGN_SLOT_1 <boost/preprocessor/slot/detail/slot1.hpp>
23 # define BOOST_PP_ASSIGN_SLOT_2 <boost/preprocessor/slot/detail/slot2.hpp>
24 # define BOOST_PP_ASSIGN_SLOT_3 <boost/preprocessor/slot/detail/slot3.hpp>
25 # define BOOST_PP_ASSIGN_SLOT_4 <boost/preprocessor/slot/detail/slot4.hpp>
26 # define BOOST_PP_ASSIGN_SLOT_5 <boost/preprocessor/slot/detail/slot5.hpp>

Completed in 586 milliseconds

1 2 3 4 5 6 7 8 91011>>