Searched defs:slot (Results 1 - 25 of 304) sorted by relevance

1234567891011>>

/external/freetype/include/freetype/
H A Dftsynth.h70 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
74 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h133 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
191 /* Make sure that a glyph slot owns `slot->bitmap'. */
194 /* slot :: The glyph slot. */
204 FT_GlyphSlot_Own_Bitmap( 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
H A Dftbitmap.h133 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
191 /* Make sure that a glyph slot owns `slot->bitmap'. */
194 /* slot :: The glyph slot. */
204 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/elfutils/libdwfl/
H A Ddwfl_module_dwarf_cfi.c34 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) argument
43 if (slot == &mod->eh_cfi)
50 return *slot = cfi;
/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 Dscoped_test_nss_db.h24 PK11SlotInfo* slot() const { return slot_.get(); } function in class:crypto::ScopedTestNSSDB
/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);
H A Dthread_local_storage_unittest.cc78 ThreadLocalStorage::Slot slot; local
79 slot.Set(reinterpret_cast<void*>(123));
80 int value = reinterpret_cast<intptr_t>(slot.Get());
89 // unsynchronized with the following users of the same TSD slot. This results
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Runtime_Stub.cpp164 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { argument
/external/android-clat/
H A Dring.h48 int slot, numslots; member in struct:packet_ring
/external/libchrome/crypto/third_party/nss/
H A Dpk11akey.cc49 PK11SlotInfo* slot,
62 PK11SymKey* key = PK11_PBEKeyGen(slot,
82 *private_key = PK11_UnwrapPrivKey(slot, key, crypto_mech_type, crypto_param,
48 ImportEncryptedECPrivateKeyInfoAndReturnKey( PK11SlotInfo* slot, SECKEYEncryptedPrivateKeyInfo* epki, SECItem* password, SECItem* nickname, SECItem* public_value, PRBool permanent, PRBool sensitive, SECKEYPrivateKey** private_key, void* wincx) argument
/external/libmicrohttpd/src/microspdy/
H A Dstream.c37 uint8_t slot; local
86 //get slot (see SPDY draft)
87 slot = *(uint8_t *)(session->read_buffer + session->read_buffer_beginning);
102 stream->slot = slot;
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dregs.c40 unsigned long slot = local
43 return (void *)(ip | slot);
51 unsigned long slot = (unsigned long)addr & 0xf; local
55 psr |= (slot & 0x3) << 41;
/external/mesa3d/src/mapi/mapi/
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 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 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 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/v8/src/heap/
H A Dincremental-marking-inl.h14 void IncrementalMarking::RecordWrite(HeapObject* obj, Object** slot, argument
17 RecordWriteSlow(obj, slot, value);
22 void IncrementalMarking::RecordWriteOfCodeEntry(JSFunction* host, Object** slot, argument
25 RecordWriteOfCodeEntrySlow(host, slot, value);
H A Dremembered-set.cc9 #include "src/heap/slot-set.h"
23 Object** slot = reinterpret_cast<Object**>(addr);
24 return IsValidSlot(heap, chunk, slot) ? KEEP_SLOT : REMOVE_SLOT;
36 // The slot is in dead object.
55 Object** slot) {
57 Object* object = *slot;
62 // If the target object is not black, the source slot must be part
66 chunk, reinterpret_cast<Address>(slot));
54 IsValidSlot(Heap* heap, MemoryChunk* chunk, Object** slot) argument
H A Dscavenger-inl.h42 Object** slot = reinterpret_cast<Object**>(slot_address); local
43 Object* object = *slot;
48 ScavengeObject(reinterpret_cast<HeapObject**>(slot), heap_object);
50 object = *slot;
53 // Unfortunately, we do not know about the slot. It could be in a
/external/v8/src/ic/
H A Daccess-compiler.cc55 Register PropertyAccessCompiler::slot() const { function in class:v8::internal::PropertyAccessCompiler
/external/v8/test/cctest/
H A Dtest-feedback-vector.h14 // Helper class that allows to write tests in a slot size independent manner.
15 // Use helper.slot(X) to get X'th slot identifier.
24 FeedbackVectorSlot slot = iter.Next(); local
25 slots_.push_back(slot);
31 // Returns slot identifier by numerical index.
32 FeedbackVectorSlot slot(int index) const { return slots_[index]; } function in class:v8::internal::FeedbackVectorHelper
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dstandalone_malloc_test.cc40 size_t slot = i % allocated.size(); local
41 char *p = allocated[slot].first;
43 size_t size = allocated[slot].second;
45 swap(allocated[slot], allocated.back());

Completed in 7884 milliseconds

1234567891011>>