Searched refs:slot (Results 51 - 75 of 426) sorted by relevance

1234567891011>>

/external/freetype/src/smooth/
H A Dftsmooth.c60 FT_GlyphSlot slot,
67 if ( slot->format != render->glyph_format )
74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
87 FT_GlyphSlot slot,
92 if ( slot->format == render->glyph_format )
93 FT_Outline_Get_CBox( &slot->outline, cbox );
97 /* convert a slot's glyph image into a bitmap */
100 FT_GlyphSlot slot,
112 FT_Bitmap* bitmap = &slot
59 ft_smooth_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
86 ft_smooth_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
99 ft_smooth_render_generic( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin, FT_Render_Mode required_mode ) argument
405 ft_smooth_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
420 ft_smooth_render_lcd( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
438 ft_smooth_render_lcd_v( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/chromium_org/third_party/freetype/src/raster/
H A Dftrend1.c60 FT_GlyphSlot slot,
67 if ( slot->format != render->glyph_format )
74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
87 FT_GlyphSlot slot,
92 if ( slot->format == render->glyph_format )
93 FT_Outline_Get_CBox( &slot->outline, cbox );
97 /* convert a slot's glyph image into a bitmap */
100 FT_GlyphSlot slot,
115 if ( slot
59 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
86 ft_raster1_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
99 ft_raster1_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/chromium_org/ui/base/touch/
H A Dtouch_factory_x11.cc227 bool TouchFactory::QuerySlotForTrackingID(uint32 tracking_id, int* slot) {
230 *slot = itr->second;
241 int slot = min_available_slot_;
242 if (slot == kMaxTouchPoints) {
243 LOG(ERROR) << "Could not find available slot for touch point";
246 SetSlotUsed(slot, true);
247 tracking_id_map_.insert(std::make_pair(tracking_id, slot));
249 // Updates the minium available slot ID
254 return slot;
260 int slot
[all...]
/external/freetype/src/raster/
H A Dftrend1.c61 FT_GlyphSlot slot,
68 if ( slot->format != render->glyph_format )
75 FT_Outline_Transform( &slot->outline, matrix );
78 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
88 FT_GlyphSlot slot,
93 if ( slot->format == render->glyph_format )
94 FT_Outline_Get_CBox( &slot->outline, cbox );
98 /* convert a slot's glyph image into a bitmap */
101 FT_GlyphSlot slot,
116 if ( slot
60 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
87 ft_raster1_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
100 ft_raster1_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/chromium/base/threading/
H A Dthread_local.h10 // mechanism. On construction, they will allocate a TLS slot, and free the
11 // TLS slot on destruction. No memory management (creation or destruction) is
71 static void AllocateSlot(SlotType& slot);
72 static void FreeSlot(SlotType& slot);
73 static void* GetValueFromSlot(SlotType& slot);
74 static void SetValueInSlot(SlotType& slot, void* value);
H A Dthread_local_storage_win.cc26 // unallocated TLS slot.
30 // a slot has a destructor, it will be stored in its corresponding
69 // Grab a new slot.
115 for (int slot = 0; slot < tls_max_; slot++) {
116 if (tls_destructors_[slot] != NULL) {
117 void* value = tls_data[slot];
118 tls_destructors_[slot](value);
/external/chromium_org/base/threading/
H A Dthread_local.h10 // mechanism. On construction, they will allocate a TLS slot, and free the
11 // TLS slot on destruction. No memory management (creation or destruction) is
70 static void AllocateSlot(SlotType& slot);
71 static void FreeSlot(SlotType& slot);
72 static void* GetValueFromSlot(SlotType& slot);
73 static void SetValueInSlot(SlotType& slot, void* value);
H A Dthread_local_storage_win.cc39 // An array of destructor function pointers for the slots. If a slot has a
119 // Try to destroy the first-created-slot (which is slot 1) in our last
120 // destructor call. That user was able to function, and define a slot with
125 for (int slot = g_last_used_tls_key; slot > 0; --slot) {
126 void* value = stack_allocated_tls_data[slot];
130 g_tls_destructors[slot];
133 stack_allocated_tls_data[slot]
[all...]
/external/chromium_org/net/third_party/mozilla_security_manager/
H A DnsKeygenHandler.h59 // slot: a slot to generate the key in, should be authenticated
64 PK11SlotInfo* slot,
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DSkSizeHash.h50 static void constructDeletedValue(SkSize& slot) argument
52 slot = SkSize::Make(-1, -1);
74 static void constructDeletedValue(SkISize& slot) argument
76 slot = SkISize::Make(-1, -1);
/external/chromium_org/v8/test/webkit/
H A Dcodegen-assign-nontemporary-as-rexp.js32 obj.__defineSetter__('slot',
37 obj2.forward = (obj['slot'] = victim);
47 obj.__defineSetter__('slot',
52 obj2.forward = (obj.slot = victim);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapHeap.h59 virtual SkBitmap* getBitmap(int32_t slot) const = 0;
60 virtual void releaseRef(int32_t slot) = 0;
75 virtual bool insert(const SkBitmap& bitmap, int32_t slot) = 0;
106 * external storage to see if a slot in the heap is eligible to be overwritten.
125 * Retrieves the bitmap from the specified slot in the heap
127 * @return The bitmap located at that slot or NULL if external storage is being used.
129 virtual SkBitmap* getBitmap(int32_t slot) const SK_OVERRIDE {
131 SkBitmapHeapEntry* entry = getEntry(slot);
139 * Retrieves the bitmap from the specified slot in the heap
141 * @return The bitmap located at that slot o
[all...]
/external/skia/src/core/
H A DSkBitmapHeap.h59 virtual SkBitmap* getBitmap(int32_t slot) const = 0;
60 virtual void releaseRef(int32_t slot) = 0;
75 virtual bool insert(const SkBitmap& bitmap, int32_t slot) = 0;
106 * external storage to see if a slot in the heap is eligible to be overwritten.
125 * Retrieves the bitmap from the specified slot in the heap
127 * @return The bitmap located at that slot or NULL if external storage is being used.
129 virtual SkBitmap* getBitmap(int32_t slot) const SK_OVERRIDE {
131 SkBitmapHeapEntry* entry = getEntry(slot);
139 * Retrieves the bitmap from the specified slot in the heap
141 * @return The bitmap located at that slot o
[all...]
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor_mac.h99 typedef void (*PK11FreeSlotFunc)(PK11SlotInfo *slot);
100 typedef SECStatus (*PK11CheckUserPasswordFunc)(PK11SlotInfo *slot, char *pw);
102 (*PK11AuthenticateFunc)(PK11SlotInfo *slot, PRBool loadCerts, void *wincx);
142 void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
H A Dnss_decryptor_win.h97 typedef void (*PK11FreeSlotFunc)(PK11SlotInfo *slot);
98 typedef SECStatus (*PK11CheckUserPasswordFunc)(PK11SlotInfo *slot, char *pw);
100 (*PK11AuthenticateFunc)(PK11SlotInfo *slot, PRBool loadCerts, void *wincx);
148 void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_mac.h100 typedef void (*PK11FreeSlotFunc)(PK11SlotInfo *slot);
101 typedef SECStatus (*PK11CheckUserPasswordFunc)(PK11SlotInfo *slot, char *pw);
103 (*PK11AuthenticateFunc)(PK11SlotInfo *slot, PRBool loadCerts, void *wincx);
144 void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
H A Dnss_decryptor_win.h97 typedef void (*PK11FreeSlotFunc)(PK11SlotInfo *slot);
98 typedef SECStatus (*PK11CheckUserPasswordFunc)(PK11SlotInfo *slot, char *pw);
100 (*PK11AuthenticateFunc)(PK11SlotInfo *slot, PRBool loadCerts, void *wincx);
148 void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftrender.h42 FT_GlyphSlot slot );
63 FT_GlyphSlot slot );
89 FT_GlyphSlot slot,
95 FT_GlyphSlot slot,
102 FT_GlyphSlot slot,
132 /* given glyph slot into a bitmap. */
135 /* a given glyph slot. */
/external/freetype/include/freetype/
H A Dftrender.h42 FT_GlyphSlot slot );
63 FT_GlyphSlot slot );
89 FT_GlyphSlot slot,
95 FT_GlyphSlot slot,
102 FT_GlyphSlot slot,
132 /* given glyph slot into a bitmap. */
135 /* a given glyph slot. */
/external/kernel-headers/original/linux/
H A Dmca.h19 /* This sets up an information callback for /proc/mca/slot?. The
20 * function is called with the buffer, slot, and device pointer (or
30 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
47 int slot; member in struct:mca_device
102 extern struct mca_device *mca_find_device_by_slot(int slot);
135 extern void mca_set_adapter_procfn(int slot, MCA_ProcFn, void* dev);
141 static inline void mca_set_adapter_procfn(int slot, MCA_ProcFn fn, void* dev) argument
/external/v8/src/
H A Dincremental-marking-inl.h38 Object** slot,
56 Object** slot,
59 RecordWriteSlow(obj, slot, value);
65 Object** slot,
67 if (IsMarking()) RecordWriteOfCodeEntrySlow(host, slot, value);
37 BaseRecordWrite(HeapObject* obj, Object** slot, Object* value) argument
55 RecordWrite(HeapObject* obj, Object** slot, Object* value) argument
64 RecordWriteOfCodeEntry(JSFunction* host, Object** slot, Code* value) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_gs.c74 unsigned slot,
169 unsigned prim_idx, j, slot; local
188 for (slot = 0; slot < shader->info.num_outputs; slot++) {
189 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0];
190 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0];
191 output[slot][
73 draw_gs_set_constants(struct draw_context *draw, unsigned slot, const void *constants, unsigned size) argument
216 unsigned slot, vs_slot, i; local
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_gs.c74 unsigned slot,
169 unsigned prim_idx, j, slot; local
188 for (slot = 0; slot < shader->info.num_outputs; slot++) {
189 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0];
190 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0];
191 output[slot][
73 draw_gs_set_constants(struct draw_context *draw, unsigned slot, const void *constants, unsigned size) argument
216 unsigned slot, vs_slot, i; local
[all...]
/external/chromium/crypto/
H A Drsa_private_key_nss.cc111 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local
112 if (!slot) {
119 PK11_FreeSlot(slot);
126 PK11_FreeSlot(slot);
132 result->key_ = PK11_FindKeyByKeyID(slot, ck_id, NULL);
135 PK11_FreeSlot(slot);
194 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local
195 if (!slot)
201 result->key_ = PK11_GenerateKeyPair(slot, CKM_RSA_PKCS_KEY_PAIR_GEN, &param,
203 PK11_FreeSlot(slot);
220 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftglyph.c59 FT_GlyphSlot slot )
66 if ( slot->format != FT_GLYPH_FORMAT_BITMAP )
72 glyph->left = slot->bitmap_left;
73 glyph->top = slot->bitmap_top;
76 if ( slot->internal->flags & FT_GLYPH_OWN_BITMAP )
78 glyph->bitmap = slot->bitmap;
79 slot->internal->flags &= ~FT_GLYPH_OWN_BITMAP;
84 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap );
157 FT_GlyphSlot slot )
162 FT_Outline* source = &slot
[all...]

Completed in 665 milliseconds

1234567891011>>