Searched defs:rec (Results 251 - 275 of 291) sorted by relevance

<<1112

/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp87 static bool isLCD(const SkScalerContext::Rec& rec) { argument
88 switch (rec.fMaskFormat) {
296 SkFaceRec* rec = gFaceRecHead; local
297 while (rec) {
298 if (rec->fFontID == fontID) {
299 SkASSERT(rec->fFace);
300 rec->fRefCnt += 1;
301 return rec;
303 rec = rec
346 SkFaceRec* rec = gFaceRecHead; local
393 SkFaceRec* rec() { return fRec; } function in class:AutoFTAccess
727 isAxisAligned(const SkScalerContext::Rec& rec) argument
[all...]
H A DSkFontHost_win.cpp60 static bool isLCD(const SkScalerContext::Rec& rec) { argument
61 return SkMask::kLCD16_Format == rec.fMaskFormat ||
62 SkMask::kLCD32_Format == rec.fMaskFormat;
70 static bool isAxisAligned(const SkScalerContext::Rec& rec) { argument
71 return 0 == rec.fPreSkewX &&
72 (bothZero(rec.fPost2x2[0][1], rec.fPost2x2[1][0]) ||
73 bothZero(rec.fPost2x2[0][0], rec.fPost2x2[1][1]));
76 static bool needToRenderWithSkia(const SkScalerContext::Rec& rec) { argument
600 compute_quality(const SkScalerContext::Rec& rec) argument
[all...]
H A DSkFontHost_mac.cpp579 const NameStyleRec* rec = reinterpret_cast<const NameStyleRec*>(ctx); local
581 return rec->fStyle == style && mface->fName.equals(rec->fName);
620 NameStyleRec rec = { familyName, style }; local
621 SkTypeface* face = SkTypefaceCache::FindByProcAndRef(FindByNameStyle, &rec);
1820 void SkTypeface_Mac::onFilterRec(SkScalerContextRec* rec) const {
1821 if (rec->fFlags & SkScalerContext::kLCD_BGROrder_Flag ||
1822 rec->fFlags & SkScalerContext::kLCD_Vertical_Flag)
1824 rec->fMaskFormat = SkMask::kA8_Format;
1829 rec
2096 const NameFontStyleRec* rec = (const NameFontStyleRec*)ctx; local
2104 NameFontStyleRec rec; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPictureTest.cpp1941 SkPictureRecorder rec; local
1942 SkCanvas* canvas = rec.beginRecording(1920, 1200);
1945 SkAutoTDelete<const SkPicture> pic(rec.endRecording());
/external/clang/include/clang/AST/
H A DExprObjC.h1185 void setInstanceReceiver(Expr *rec) { argument
1187 setReceiverPointer(rec);
/external/harfbuzz_ng/src/
H A Dhb-coretext.cc218 feature_record_t rec; member in struct:active_feature_t
222 return a->rec.feature < b->rec.feature ? -1 : a->rec.feature > b->rec.feature ? 1 :
224 a->rec.setting < b->rec.setting ? -1 : a->rec.setting > b->rec.setting ? 1 :
460 feature.rec
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java1246 * @param rec
1251 public void updateRecord(long now, DNSRecord rec, Operation operation) { argument
1259 listener.updateRecord(this.getCache(), now, rec);
1262 if (DNSRecordType.TYPE_PTR.equals(rec.getRecordType()))
1263 // if (DNSRecordType.TYPE_PTR.equals(rec.getRecordType()) || DNSRecordType.TYPE_SRV.equals(rec.getRecordType()))
1265 ServiceEvent event = rec.getServiceEvent(this);
1500 * @param rec
1504 public DNSOutgoing addAnswer(DNSIncoming in, InetAddress addr, int port, DNSOutgoing out, DNSRecord rec) throws IOException { argument
1510 newOut.addAnswer(in, rec);
[all...]
/external/mdnsresponder/Clients/
H A Ddns-sd.c916 static void DNSSD_API MyRegisterRecordCallback(DNSServiceRef service, DNSRecordRef rec, const DNSServiceFlags flags, argument
922 (void)rec; // Unused
936 // DNSServiceRemoveRecord(service, rec, 0); to test record removal
943 DNSServiceUpdateRecord(service, rec, 0, sizeof(x), &x, 0);
1256 DNSRecordRef rec; local
1278 err = DNSServiceAddRecord(sc3, &rec, 0, kDNSServiceType_NULL, sizeof(nulrec), nulrec, 0);
1281 err = DNSServiceRemoveRecord(sc3, rec, 0);
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientstub.c142 DNSRecord *rec; member in struct:_DNSServiceRef_t
373 DNSRecord *rec = sdRef->rec; local
374 while (rec)
376 DNSRecord *next = rec->recnext;
377 free(rec);
378 rec = next;
470 sdr->rec = NULL;
814 DNSRecord *rec; local
849 rec
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp1302 // merge @insn into load/store instruction from @rec
1303 bool combineLd(Record *rec, Instruction *ld);
1304 bool combineSt(Record *rec, Instruction *st);
1347 MemoryOpt::combineLd(Record *rec, Instruction *ld) argument
1349 int32_t offRc = rec->offset;
1351 int sizeRc = rec->size;
1366 for (j = 0; sizeRc; sizeRc -= rec->insn->getDef(j)->reg.size, ++j);
1372 // j: nr of definitions in rec->insn, move:
1374 rec->insn->setDef(d, rec
1400 combineSt(Record *rec, Instruction *st) argument
1513 Record *rec = NULL; local
1547 replaceLdFromSt(Instruction *ld, Record *rec) argument
1571 replaceLdFromLd(Instruction *ldE, Record *rec) argument
1595 replaceStFromSt(Instruction *restrict st, Record *rec) argument
1711 Record *rec; local
[all...]
/external/skia/src/core/
H A DSkXfermode.cpp1250 const ProcCoeff& rec = gProcCoeffs[fMode]; local
1251 fProc = rec.fProc;
1253 fSrcCoeff = rec.fSC;
1254 fDstCoeff = rec.fDC;
1428 static SkClearXfermode* Create(const ProcCoeff& rec) { argument
1429 return SkNEW_ARGS(SkClearXfermode, (rec));
1439 SkClearXfermode(const ProcCoeff& rec) : SkProcCoeffXfermode(rec, kClear_Mode) {} argument
1493 static SkSrcXfermode* Create(const ProcCoeff& rec) { argument
1494 return SkNEW_ARGS(SkSrcXfermode, (rec));
1504 SkSrcXfermode(const ProcCoeff& rec) argument
1563 Create(const ProcCoeff& rec) argument
1573 SkDstInXfermode(const ProcCoeff& rec) argument
1609 Create(const ProcCoeff& rec) argument
1619 SkDstOutXfermode(const ProcCoeff& rec) argument
1662 ProcCoeff rec = gProcCoeffs[mode]; local
1738 const ProcCoeff& rec = gProcCoeffs[mode]; local
1939 const Proc16Rec& rec = gModeProcs16[mode]; local
[all...]
H A DSkDraw.cpp313 static void bw_pt_rect_hair_proc(const PtProcRec& rec, const SkPoint devPts[], argument
315 SkASSERT(rec.fClip->isRect());
316 const SkIRect& r = rec.fClip->getBounds();
327 static void bw_pt_rect_16_hair_proc(const PtProcRec& rec, argument
330 SkASSERT(rec.fRC->isRect());
331 const SkIRect& r = rec.fRC->getBounds();
348 static void bw_pt_rect_32_hair_proc(const PtProcRec& rec, argument
351 SkASSERT(rec.fRC->isRect());
352 const SkIRect& r = rec.fRC->getBounds();
369 static void bw_pt_hair_proc(const PtProcRec& rec, cons argument
380 bw_line_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
387 bw_poly_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
396 aa_line_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
403 aa_poly_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
412 bw_square_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
429 aa_square_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
559 PtProcRec rec; local
2070 TriColorShaderContext(const SkTriColorShader& shader, const ContextRec& rec) argument
[all...]
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp87 static bool isLCD(const SkScalerContext::Rec& rec) { argument
88 switch (rec.fMaskFormat) {
297 SkFaceRec* rec = gFaceRecHead; local
298 while (rec) {
299 if (rec->fFontID == fontID) {
300 SkASSERT(rec->fFace);
301 rec->fRefCnt += 1;
302 return rec;
304 rec = rec
347 SkFaceRec* rec = gFaceRecHead; local
394 SkFaceRec* rec() { return fRec; } function in class:AutoFTAccess
728 isAxisAligned(const SkScalerContext::Rec& rec) argument
[all...]
H A DSkFontHost_win.cpp60 static bool isLCD(const SkScalerContext::Rec& rec) { argument
61 return SkMask::kLCD16_Format == rec.fMaskFormat ||
62 SkMask::kLCD32_Format == rec.fMaskFormat;
70 static bool isAxisAligned(const SkScalerContext::Rec& rec) { argument
71 return 0 == rec.fPreSkewX &&
72 (bothZero(rec.fPost2x2[0][1], rec.fPost2x2[1][0]) ||
73 bothZero(rec.fPost2x2[0][0], rec.fPost2x2[1][1]));
76 static bool needToRenderWithSkia(const SkScalerContext::Rec& rec) { argument
600 compute_quality(const SkScalerContext::Rec& rec) argument
[all...]
/external/srec/srec/crec/
H A Dsrec.c60 static void reset_cost_offsets(multi_srec* rec, frameID current_search_frame,
62 static void update_internal_hmm_states(srec *rec, costdata *pcurrent_prune_delta,
78 static altword_token* reprune_altword_token_batch(srec* rec, argument
88 free_altword_token(rec, batch);
102 free_altword_token(rec, awtoken);
125 free_altword_token(rec, awtoken);
131 free_altword_token(rec, batch);
137 static void reprune_altword_tokens(srec* rec) argument
142 bigcostdata current_prune_delta = rec->prune_delta;
146 for (i = rec
212 copy_altwords(srec* rec, altword_token* list1, costdata delta) argument
269 sizewise_altwords(srec* rec, altword_token* awtoken_head) argument
349 find_which_models_to_compute(srec *rec, const SWIModel *acoustic_models) argument
441 prune_new_tokens(srec *rec, costdata current_prune_thresh) argument
490 reprune_word_tokens_if_necessary(srec *rec) argument
509 reprune_new_states(srec *rec, costdata current_best_cost, costdata current_prune_delta) argument
550 prune_fsmnode_tokens(srec *rec, costdata current_prune_thresh, ftokenID not_this_one) argument
589 reprune_fsmnode_tokens(srec *rec, costdata current_best_cost, costdata current_prune_delta, ftokenID not_this_one) argument
628 reset_best_cost_to_zero(srec* rec, costdata current_best_cost) argument
654 reset_cost_offsets(multi_srec* rec, frameID current_frame, costdata current_best_cost) argument
673 create_word_token(srec *rec) argument
695 block_fsmnodes_per_backtrace(srec *rec, wtokenID wtoken_id) argument
716 srec_process_word_boundary_nbest(srec* rec, nodeID end_node, wordID word, wtokenID word_backtrace, costdata cost, costdata* pcurrent_word_threshold, int *any_nodes_blocked) argument
795 srec_get_parent_for_active_fsmnode(srec* rec, ftokenID ftoken_index) argument
822 do_epsilon_updates(srec *rec, costdata prune_delta, costdata best_cost) argument
1096 update_internal_hmm_states(srec *rec, costdata *pcurrent_prune_delta, costdata *pcurrent_best_cost, costdata *precomputed_model_scores) argument
1251 update_from_hmms_to_fsmnodes(srec *rec, costdata prune_delta, costdata best_cost) argument
1518 update_from_current_fsm_nodes_into_new_HMMs(srec* rec, costdata *pcurrent_prune_delta, costdata *pcurrent_best_cost, costdata *precomputed_model_scores) argument
1696 srec_begin(srec *rec, int begin_syn_node) argument
1785 srec_force_the_end(srec* rec, frameID end_frame, wordID end_word) argument
1821 srec_no_more_frames(srec* rec) argument
1914 srec_terminate(srec* rec) argument
2162 srec_viterbi_part1(srec *rec, const SWIModel *acoustic_models, pattern_info *pattern, costdata silence_model_cost) argument
2258 srec_viterbi_part2(srec *rec) argument
2336 WHICH_RECOG(multi_srec* rec) argument
2361 srec* rec = WHICH_RECOG(recm); local
2411 multi_srec_get_eos_status(multi_srec* rec) argument
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_dm.c1513 bt_service_record_t rec; local
1518 memset(&rec, 0, sizeof(bt_service_record_t));
1524 prop.val = (void*)&rec;
1525 prop.len = sizeof(rec);
1530 rec.channel = p_data->disc_res.result - 3;
1532 rec.name[0] = 0;
/external/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp314 static void bw_pt_rect_hair_proc(const PtProcRec& rec, const SkPoint devPts[], argument
316 SkASSERT(rec.fClip->isRect());
317 const SkIRect& r = rec.fClip->getBounds();
328 static void bw_pt_rect_16_hair_proc(const PtProcRec& rec, argument
331 SkASSERT(rec.fRC->isRect());
332 const SkIRect& r = rec.fRC->getBounds();
349 static void bw_pt_rect_32_hair_proc(const PtProcRec& rec, argument
352 SkASSERT(rec.fRC->isRect());
353 const SkIRect& r = rec.fRC->getBounds();
370 static void bw_pt_hair_proc(const PtProcRec& rec, cons argument
381 bw_line_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
388 bw_poly_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
397 aa_line_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
404 aa_poly_hair_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
413 bw_square_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
430 aa_square_proc(const PtProcRec& rec, const SkPoint devPts[], int count, SkBlitter* blitter) argument
560 PtProcRec rec; local
2081 TriColorShaderContext(const SkTriColorShader& shader, const ContextRec& rec) argument
[all...]
H A DSkCanvas.cpp45 static void inc_rec() { ++gRecCounter; printf("----- inc rec %d\n", gRecCounter); }
46 static void dec_rec() { --gRecCounter; printf("----- dec rec %d\n", gRecCounter); }
227 const DeviceCM* rec = fCurrLayer; local
228 if (rec && rec->fDevice) {
230 fMatrix = rec->fMatrix;
231 fClip = &((SkRasterClip*)&rec->fClip)->forceGetBW();
232 fRC = &rec->fClip;
233 fDevice = rec->fDevice;
235 fPaint = rec
577 MCRec* rec = (MCRec*) fMCStack.front(); local
592 MCRec* rec = (MCRec*)iter.next(); local
[all...]
H A DSkPaint.cpp1523 static bool tooBigForLCD(const SkScalerContext::Rec& rec) { argument
1524 SkScalar area = rec.fPost2x2[0][0] * rec.fPost2x2[1][1] -
1525 rec.fPost2x2[1][0] * rec.fPost2x2[0][1];
1526 SkScalar size = SkScalarSqrt(SkScalarAbs(area)) * rec.fTextSize;
1543 Rec* rec) {
1550 rec->fFontID = typeface->uniqueID();
1551 rec->fTextSize = paint.getTextSize();
1552 rec
1540 MakeRec(const SkPaint& paint, const SkDeviceProperties* deviceProperties, const SkMatrix* deviceMatrix, Rec* rec) argument
1748 PostMakeRec(const SkPaint&, SkScalerContext::Rec* rec) argument
1796 SkScalerContext::Rec rec; local
1919 GetMaskPreBlend(const SkScalerContext::Rec& rec) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c267 static int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
268 static tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
273 static int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
274 static int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
275 static int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct list_struct *rec);
283 struct list_struct *rec);
287 struct list_struct *rec);
1052 struct list_struct rec; local
1104 memset(&rec,'\0',sizeof(rec));
1191 tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec) argument
1204 tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec) argument
1794 struct list_struct rec; local
1877 struct list_struct *rec; local
2137 struct list_struct rec; local
2257 tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off, struct list_struct *rec) argument
2307 update_tailer(struct tdb_context *tdb, tdb_off_t offset, const struct list_struct *rec) argument
2320 tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec) argument
2422 tdb_allocate_ofs(struct tdb_context *tdb, tdb_len_t length, tdb_off_t rec_ptr, struct list_struct *rec, tdb_off_t last_ptr) argument
2483 tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec) argument
2580 struct list_struct rec; local
2643 tdb_next_lock(struct tdb_context *tdb, struct tdb_traverse_lock *tlock, struct list_struct *rec) argument
2755 struct list_struct rec; local
2865 struct list_struct rec; local
2891 struct list_struct rec; local
2951 struct list_struct rec; local
3016 struct list_struct rec; local
3131 tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype, struct list_struct *rec) argument
3150 struct list_struct rec; local
3185 struct list_struct rec; local
3223 struct list_struct rec; local
3250 struct list_struct rec; local
3303 struct list_struct rec; local
3327 struct list_struct rec; local
3363 struct list_struct rec; local
3454 struct list_struct rec; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.c4368 * @rec: the record to read from
4370 * This returns the event id from the @rec.
4372 int pevent_data_type(struct pevent *pevent, struct pevent_record *rec) argument
4374 return trace_parse_common_type(pevent, rec->data);
4392 * @rec: the record to parse
4396 int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec) argument
4398 return parse_common_pid(pevent, rec->data);
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.c4471 TT_DefRecord* rec; local
4578 rec = CUR.FDefs;
4579 limit = rec + CUR.numFDefs;
4582 for ( ; rec < limit; rec++ )
4584 if ( rec->opc == n )
4588 if ( rec == limit )
4607 rec->range = CUR.curRange;
4608 rec->opc = (FT_UInt16)n;
4609 rec
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2542 const RecordDecl *rec = field->getParent(); local
2551 bool mayAlias = rec->hasAttr<MayAliasAttr>();
2556 if (rec->isUnion()) {
2563 unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field);
/external/freetype/src/truetype/
H A Dttinterp.c4582 TT_DefRecord* rec; local
4689 rec = CUR.FDefs;
4690 limit = rec + CUR.numFDefs;
4693 for ( ; rec < limit; rec++ )
4695 if ( rec->opc == n )
4699 if ( rec == limit )
4718 rec->range = CUR.curRange;
4719 rec->opc = (FT_UInt16)n;
4720 rec
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttinterp.c4471 TT_DefRecord* rec; local
4578 rec = CUR.FDefs;
4579 limit = rec + CUR.numFDefs;
4582 for ( ; rec < limit; rec++ )
4584 if ( rec->opc == n )
4588 if ( rec == limit )
4607 rec->range = CUR.curRange;
4608 rec->opc = (FT_UInt16)n;
4609 rec
[all...]

Completed in 2778 milliseconds

<<1112