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

1234567891011>>

/external/chromium/base/threading/
H A Dthread_local_win.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 slot = TlsAlloc();
18 CHECK_NE(slot, TLS_OUT_OF_INDEXES);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 if (!TlsFree(slot)) {
24 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
30 return TlsGetValue(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
35 if (!TlsSetValue(slot, valu
[all...]
H A Dthread_local_posix.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 int error = pthread_key_create(&slot, NULL);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 int error = pthread_key_delete(slot);
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
29 return pthread_getspecific(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
34 int error = pthread_setspecific(slot, value);
/external/chromium_org/base/threading/
H A Dthread_local_win.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 slot = TlsAlloc();
18 CHECK_NE(slot, TLS_OUT_OF_INDEXES);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 if (!TlsFree(slot)) {
24 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
30 return TlsGetValue(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
35 if (!TlsSetValue(slot, valu
[all...]
H A Dthread_local_posix.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 int error = pthread_key_create(&slot, NULL);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 int error = pthread_key_delete(slot);
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
29 return pthread_getspecific(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
34 int error = pthread_setspecific(slot, value);
/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
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];
/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/chromium_org/third_party/freetype/src/base/
H A Dftsynth.c47 FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
50 FT_Outline* outline = &slot->outline;
54 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
84 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
86 FT_Library library = slot->library;
87 FT_Face face = slot->face;
92 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
93 slot->format != FT_GLYPH_FORMAT_BITMAP )
101 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE )
104 (void)FT_Outline_Embolden( &slot
[all...]
/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/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/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/freetype/include/freetype/
H A Dftsynth.h67 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
71 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/external/freetype/include/freetype/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
/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...]
/external/chromium/net/base/
H A Dkeygen_handler_nss.cc23 // TODO(mattm): allow choosing which slot to generate and store the key.
24 crypto::ScopedPK11Slot slot(crypto::GetPrivateNSSKeySlot());
25 if (!slot.get()) {
26 LOG(ERROR) << "Couldn't get private key slot from NSS!";
31 if (SECSuccess != PK11_Authenticate(slot.get(), PR_TRUE,
33 LOG(ERROR) << "Couldn't authenticate to private key slot!";
38 slot.get(), stores_key_);
/external/chromium_org/net/base/
H A Dkeygen_handler_nss.cc23 // TODO(mattm): allow choosing which slot to generate and store the key.
24 crypto::ScopedPK11Slot slot(crypto::GetPrivateNSSKeySlot());
25 if (!slot.get()) {
26 LOG(ERROR) << "Couldn't get private key slot from NSS!";
31 if (SECSuccess != PK11_Authenticate(slot.get(), PR_TRUE,
33 LOG(ERROR) << "Couldn't authenticate to private key slot!";
38 slot.get(), stores_key_);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicStringHash.h54 static void constructDeletedValue(WTF::AtomicString& slot) { new (NotNull, &slot) WTF::AtomicString(HashTableDeletedValue); } argument
55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); } argument
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels.c82 int s, slot = 0; local
86 // Keep track of the nearest neighbour 'slot'
87 while (slot < num_levels - 1 &&
88 2 * s > inv_q_level[slot] + inv_q_level[slot + 1]) {
89 ++slot;
92 q_sum[slot] += s * freq[s];
93 q_count[slot] += freq[s];
95 q_level[s] = slot;
100 for (slot
130 const int slot = q_level[s]; local
[all...]

Completed in 1903 milliseconds

1234567891011>>