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

1234567891011>>

/external/chromium_org/base/threading/
H A Dthread_local_android.cc13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
14 bool succeed = slot->Initialize(NULL);
19 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
20 slot.Free();
24 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
25 return slot.Get();
29 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
30 slot.Set(value);
H A Dthread_local_win.cc15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
16 *slot = TlsAlloc();
17 CHECK_NE(*slot, TLS_OUT_OF_INDEXES);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
22 if (!TlsFree(slot)) {
23 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
29 return TlsGetValue(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
34 if (!TlsSetValue(slot, valu
[all...]
H A Dthread_local_posix.cc17 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
18 int error = pthread_key_create(slot, NULL);
23 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
24 int error = pthread_key_delete(slot);
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
30 return pthread_getspecific(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
35 int error = pthread_setspecific(slot, value);
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dthread_local_win.cc14 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
15 *slot = TlsAlloc();
16 assert(*slot != TLS_OUT_OF_INDEXES);
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
21 if (!TlsFree(slot)) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
28 return TlsGetValue(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
33 if (!TlsSetValue(slot, value)) {
H A Dthread_local_posix.cc13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
14 if (pthread_key_create(slot, NULL) != 0) {
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
21 if (pthread_key_delete(slot) != 0) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
28 return pthread_getspecific(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
33 if (pthread_setspecific(slot, value) != 0) {
/external/chromium_org/third_party/mesa/src/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
/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
/external/freetype/src/base/
H A Dftsynth.c48 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
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftsynth.c48 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
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftsynth.c48 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
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1099.js33 var slot = "foo"; return function (a) { return slot === a; }
37 var slot = "bar";
40 return slot === 'bar';
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/WebKit/Source/core/rendering/
H A DClipRectsCache.h50 Entry& get(ClipRectsCacheSlot slot) argument
52 ASSERT(slot < NumberOfClipRectsCacheSlots);
53 return m_entries[slot];
56 void clear(ClipRectsCacheSlot slot)
58 ASSERT(slot < NumberOfClipRectsCacheSlots);
59 m_entries[slot] = Entry();
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/freetype/include/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsynth.h68 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/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/chromium_org/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/chromium_org/third_party/mesa/src/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/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...]

Completed in 443 milliseconds

1234567891011>>