Searched refs:slot (Results 276 - 300 of 524) sorted by relevance

<<11121314151617181920>>

/external/freetype/src/sfnt/
H A Dpngshim.c178 Load_SBit_Png( FT_GlyphSlot slot,
188 FT_Bitmap *map = &slot->bitmap;
274 error = ft_glyphslot_alloc_bitmap( slot, size );
/external/freetype/src/truetype/
H A Dttdriver.c334 /* A driver method used to load a glyph within a given glyph slot. */
337 /* slot :: A handle to the target slot object where the glyph */
360 TT_GlyphSlot slot = (TT_GlyphSlot)ttslot; local
366 if ( !slot )
404 error = TT_Load_Glyph( size, slot, glyph_index, load_flags );
407 /* slot->outline.dropout_mode = 2; */
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_private.h303 uint slot[10]; member in struct:draw_context::__anon27128
374 unsigned slot,
387 unsigned slot,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttdriver.c333 /* A driver method used to load a glyph within a given glyph slot. */
336 /* slot :: A handle to the target slot object where the glyph */
359 TT_GlyphSlot slot = (TT_GlyphSlot)ttslot; local
365 if ( !slot )
403 error = TT_Load_Glyph( size, slot, glyph_index, load_flags );
406 /* slot->outline.dropout_mode = 2; */
/external/qemu/include/hw/pci/
H A Dpci.h15 #define PCI_DEVFN(slot, func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
193 PCIDevice *pci_find_device(int bus_num, int slot, int function);
/external/qemu/
H A Dkvm-all.c49 int slot; member in struct:KVMSlot
84 fprintf(stderr, "%s: no free slot available\n", __func__);
105 * Find overlapping slot with lowest start address
145 static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot) argument
149 mem.slot = slot->slot;
150 mem.guest_phys_addr = slot->start_addr;
151 mem.memory_size = slot->memory_size;
152 mem.userspace_addr = (unsigned long)qemu_get_ram_ptr(slot
[all...]
/external/srec/srec/Semproc/src/
H A DSymbolTable.c196 ESR_ReturnCode ST_getSymbolSlot(SymbolTable* ptr, Symbol** slot) argument
200 if (ptr == NULL || slot == NULL)
206 *slot = ptr->next++;
/external/chromium_org/v8/src/heap/
H A Dincremental-marking.cc37 void IncrementalMarking::RecordWriteSlow(HeapObject* obj, Object** slot, argument
39 if (BaseRecordWrite(obj, slot, value) && slot != NULL) {
42 // Object is not going to be rescanned we need to record the slot.
44 slot, value); local
50 void IncrementalMarking::RecordWriteFromCode(HeapObject* obj, Object** slot, argument
65 marking->RecordWrite(obj, slot, *slot);
90 Object** slot,
92 if (BaseRecordWrite(host, slot, valu
89 RecordWriteOfCodeEntrySlow(JSFunction* host, Object** slot, Code* value) argument
[all...]
H A Dmark-compact.cc1053 // setter did not record the slot update and we have to do that manually.
1054 Address slot = candidate->address() + JSFunction::kCodeEntryOffset; local
1055 Code* target = Code::cast(Code::GetObjectFromEntryAddress(slot));
1056 isolate_->heap()->mark_compact_collector()->RecordCodeEntrySlot(slot,
1122 // Move every slot in the entry.
1125 Object** slot = code_map->RawFieldOfElementAt(dst_index); local
1132 Marking::IsBlack(Marking::MarkBitFrom(HeapObject::cast(*slot))));
1133 isolate_->heap()->mark_compact_collector()->RecordSlot(slot, slot,
1134 *slot);
1297 JSFunction** slot = &jsfunction_candidates_head_; local
1485 Object** slot = local
1701 VisitPointer(Object** slot) argument
2547 Object** slot = prototype_transitions->RawFieldOfElementAt(proto_index); local
2749 Object** slot = entries->slot_at(new_start); local
2764 Object** slot = entries->slot_at(new_start + survived); local
2860 RecordMigratedSlot(Object* value, Address slot) argument
3013 UpdateSlot(Heap* heap, Object** slot) argument
4398 IsTypedSlot(ObjectSlot slot) argument
4468 RecordCodeEntrySlot(Address slot, Code* target) argument
4497 DecodeSlotType( SlotsBuffer::ObjectSlot slot) argument
4507 ObjectSlot slot = slots_[slot_idx]; local
4524 ObjectSlot slot = slots_[slot_idx]; local
[all...]
H A Dobjects-visiting.cc317 // Record the updated slot if necessary.
366 Object** slot = HeapObject::RawField(array_buffer, local
368 heap->mark_compact_collector()->RecordSlot(slot, slot, typed_array_obj);
/external/srec/srec/Grammar/src/
H A DSR_GrammarImpl.c149 ESR_ReturnCode SR_Grammar_AddWordToSlot(SR_Grammar* self, const LCHAR* slot, const LCHAR* word, argument
160 if ( slot != NULL )
162 if ( strlen ( slot ) >= MAX_STRING_LEN )
164 PLogError ( "SR_Grammar_AddWordToSlot slot : %s too long : Max %d", slot, MAX_STRING_LEN - 1 );
232 CHKLOG(logrc, SR_EventLogToken_BASIC(impl->eventLog, impl->logLevel, L("SLOT"), slot));
250 ca_rc = CA_AddWordToSyntax(impl->syntax, slot, word, pronunciation, weight);
255 CHKLOG(rc, impl->semgraph->addWordToSlot(impl->semgraph, slot, word, tag, 1));
260 CHKLOG(rc, impl->semgraph->addWordToSlot(impl->semgraph, slot, word, tag, 0));
291 PLogError(L("failed on |%s|%s|%s|\n"), slot, wor
328 SR_Grammar_AddNametagToSlot(SR_Grammar* self, const LCHAR* slot, const SR_Nametag* nametag, int weight, const LCHAR* tag) argument
[all...]
/external/chromium_org/content/child/webcrypto/nss/
H A Drsa_key_nss.cc39 crypto::ScopedPK11Slot slot(PK11_GetInternalSlot());
41 if (PK11_GetSlotInfo(slot.get(), &info) != SECSuccess)
371 crypto::ScopedPK11Slot slot(PK11_GetInternalSlot());
374 slot.get(), &key_template[0], key_template.size(), PR_FALSE));
380 PK11_FindKeyByKeyID(slot.get(), object_id.get(), NULL));
538 crypto::ScopedPK11Slot slot(PK11_GetInternalKeySlot());
539 if (!slot)
558 PK11_GenerateKeyPairWithOpFlags(slot.get(),
642 crypto::ScopedPK11Slot slot(PK11_GetInternalSlot());
643 if (PK11_ImportDERPrivateKeyInfoAndReturnKey(slot
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_setup.c455 * The value value comes from vertex[slot][i].
456 * The result will be put into setup->coef[slot].a0[i].
457 * \param slot which attribute slot
458 * \param i which component of the slot (0..3)
517 slot, "xyzw"[i],
518 setup->coef[slot].a0[i],
519 setup->coef[slot].dadx[i],
520 setup->coef[slot].dady[i]);
576 setup_fragcoord_coeff(struct setup_context *setup, uint slot) argument
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c455 * The value value comes from vertex[slot][i].
456 * The result will be put into setup->coef[slot].a0[i].
457 * \param slot which attribute slot
458 * \param i which component of the slot (0..3)
517 slot, "xyzw"[i],
518 setup->coef[slot].a0[i],
519 setup->coef[slot].dadx[i],
520 setup->coef[slot].dady[i]);
576 setup_fragcoord_coeff(struct setup_context *setup, uint slot) argument
[all...]
/external/mdnsresponder/mDNSCore/
H A DmDNS.c205 mDNSu32 slot; local
206 for (slot = 0; slot < AUTH_HASH_SLOTS; slot++)
208 AuthGroup **cp = &r->rrauth_hash[slot];
238 mDNSexport AuthGroup *AuthGroupForName(AuthHash *r, const mDNSu32 slot, const mDNSu32 namehash, const domainname *const name) argument
241 for (ag = r->rrauth_hash[slot]; ag; ag=ag->next)
247 mDNSexport AuthGroup *AuthGroupForRecord(AuthHash *r, const mDNSu32 slot, const ResourceRecord *const rr) argument
249 return(AuthGroupForName(r, slot, rr->namehash, rr->name));
252 mDNSlocal AuthGroup *GetAuthGroup(AuthHash *r, const mDNSu32 slot, cons argument
283 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
300 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
322 CacheGroupForName(const mDNS *const m, const mDNSu32 slot, const mDNSu32 namehash, const domainname *const name) argument
331 CacheGroupForRecord(const mDNS *const m, const mDNSu32 slot, const ResourceRecord *const rr) argument
956 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
983 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
1006 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
1372 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); local
2500 ScheduleNextCacheCheckTime(mDNS *const m, const mDNSu32 slot, const mDNSs32 event) argument
2579 const mDNSu32 slot = HashSlot(&q->qname); local
2650 mDNSu32 slot; local
2818 const mDNSu32 slot = HashSlot(&q->qname); local
2851 mDNSu32 slot; local
3414 mDNSu32 slot; local
3486 CheckForSoonToExpireRecords(mDNS *const m, const domainname *const name, const mDNSu32 namehash, const mDNSu32 slot) argument
3711 CheckCacheExpiration(mDNS *const m, const mDNSu32 slot, CacheGroup *const cg) argument
3787 mDNSu32 slot = HashSlot(&q->qname); local
3978 mDNSu32 slot; local
4068 mDNSu32 slot; local
4134 GetCacheGroup(mDNS *const m, const mDNSu32 slot, const ResourceRecord *const rr) argument
4297 mDNSu32 slot; local
4559 mDNSu32 slot; local
5181 mDNSu32 slot; local
5651 mDNSu32 slot = HashSlot(pktrr->name); local
5871 const mDNSu32 slot = HashSlot(&pktq.qname); local
6356 CreateNewCacheEntry(mDNS *const m, const mDNSu32 slot, CacheGroup *cg, mDNSs32 delay) argument
6410 const mDNSu32 slot = HashSlot(&q->qname); local
6550 const mDNSu32 slot = HashSlot(&q.qname); local
6813 const mDNSu32 slot = HashSlot(m->rec.r.resrec.name); local
6946 const mDNSu32 slot = HashSlot(r1->resrec.name); local
7057 mDNSu32 slot = HashSlot(&q.qname); local
8098 mDNSu32 slot; local
8159 mDNSu32 slot; local
8541 const mDNSu32 slot = HashSlot(&question->qname); local
8704 const mDNSu32 slot = HashSlot(&question->qname); local
9616 mDNSu32 slot; local
9678 mDNSu32 slot; local
10614 mDNSu32 slot; local
10848 const mDNSu32 slot = HashSlot(&q->qname); local
10864 const mDNSu32 slot = HashSlot(&q->qname); local
11029 mDNSu32 slot; local
11435 mDNSu32 slot; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.cpp52 void* slot = Heap::allocate<StylePropertySet>(sizeForImmutableStylePropertySetWithPropertyCount(count)); local
54 void* slot = WTF::fastMalloc(sizeForImmutableStylePropertySetWithPropertyCount(count)); local
56 return adoptRefWillBeNoop(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
286 void MutableStylePropertySet::setProperty(const CSSProperty& property, CSSProperty* slot) argument
289 CSSProperty* toReplace = slot ? slot : findCSSPropertyWithID(property.id());
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapHeap.cpp332 int slot; local
333 fUnusedSlots.pop(&slot);
334 entry = fStorage[slot];
356 // If entry is the last slot in storage, it is safe to delete it.
358 // free the slot
368 // update the index with the appropriate slot in the heap
/external/skia/src/core/
H A DSkBitmapHeap.cpp332 int slot; local
333 fUnusedSlots.pop(&slot);
334 entry = fStorage[slot];
356 // If entry is the last slot in storage, it is safe to delete it.
358 // free the slot
368 // update the index with the appropriate slot in the heap
/external/stressapptest/src/
H A Dfinelock_queue.cc286 // Get a random number from the slot we locked.
287 uint64 FineLockPEQueue::GetRandom64FromSlot(int slot) { argument
290 uint64 result = 2862933555777941757ULL * rand_seed_[slot] + 3037000493ULL;
291 rand_seed_[slot] = result;
298 // Try each available slot.
/external/tcpdump/
H A Dprint-wb.c153 u_int32_t slot; member in struct:pgstate
197 EXTRACT_32BITS(&id->pi_ps.slot),
275 EXTRACT_32BITS(&ps->slot),
/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc110 // (SECFailure). Either way we're done with this slot.
147 cert->os_cert_handle()->slot));
/external/chromium_org/chrome/common/net/
H A Dx509_certificate_model_unittest.cc229 test_nssdb.slot())) /* public slot */,
231 test_nssdb.slot())) /* private slot */);
263 test_nssdb.slot())) /* public slot */,
265 test_nssdb.slot())) /* private slot */);
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.h49 /* glyph :: The current glyph slot. */
203 CFF_GlyphSlot slot,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h36 * for input/output slot assignment.
40 uint8_t slot[4]; /* native slots for xyzw (addresses in 32-bit words) */ member in struct:nv50_ir_varying
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_texstate.c275 /* Extract the arg from slot A, shift it into the correct argument slot
303 static GLboolean r200UpdateTextureEnv( struct gl_context *ctx, int unit, int slot, GLuint replaceargs ) argument
308 GLuint color_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXCBLEND2] &
311 GLuint alpha_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXABLEND2] &
399 if (slot == 0)
424 if (slot == 0)
481 if (slot == 0)
506 if (slot == 0)
714 if ( rmesa->hw.pix[slot]
[all...]

Completed in 976 milliseconds

<<11121314151617181920>>