Searched defs:rec (Results 101 - 125 of 291) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_java.cc201 void __tsan_java_mutex_lock_rec(jptr addr, int rec) { argument
203 DPrintf("#%d: java_mutex_lock_rec(%p, %d)\n", thr->tid, addr, rec);
207 CHECK_GT(rec, 0);
210 MutexLock(thr, pc, addr, rec);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSQuestion.java262 boolean answeredBy(DNSEntry rec) { argument
263 return this.isSameRecordClass(rec) && this.isSameType(rec) && this.getName().equals(rec.getName());
/external/qemu/
H A Diohandler.c155 ChildProcessRecord *rec, *next; local
157 QLIST_FOREACH_SAFE(rec, &child_watches, next, next) {
158 if (waitpid(rec->pid, NULL, WNOHANG) == rec->pid) {
159 QLIST_REMOVE(rec, next);
160 g_free(rec);
177 ChildProcessRecord *rec; local
183 QLIST_FOREACH(rec, &child_watches, next) {
184 if (rec->pid == pid) {
188 rec
[all...]
/external/skia/src/core/
H A DSkMallocPixelRef.cpp188 bool SkMallocPixelRef::onNewLockPixels(LockRec* rec) { argument
189 rec->fPixels = fStorage;
190 rec->fRowBytes = fRB;
191 rec->fColorTable = fCTable;
H A DSkTypefaceCache.cpp38 Rec* rec = fArray.append(); local
39 rec->fFace = face;
40 rec->fRequestedStyle = requestedStyle;
41 rec->fStrong = strong;
/external/skia/src/effects/
H A DSk1DPathEffect.cpp73 SkStrokeRec* rec, const SkRect* cullRect) const {
75 rec->setFillStyle();
76 return this->INHERITED::filterPath(dst, src, rec, cullRect);
72 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
H A DSk2DPathEffect.cpp84 SkStrokeRec* rec, const SkRect* cullRect) const {
85 if (this->INHERITED::filterPath(dst, src, rec, cullRect)) {
86 rec->setStrokeStyle(fWidth);
83 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
H A DSkDashPathEffect.cpp36 SkStrokeRec* rec, const SkRect* cullRect) const {
37 return SkDashPath::FilterDashPath(dst, src, rec, cullRect, fIntervals, fCount,
47 const SkStrokeRec& rec,
51 if (fInitialDashLength < 0 || 0 >= rec.getWidth()) {
74 if (SkPaint::kButt_Cap != rec.getCap()) {
95 results->fSize.set(SkScalarHalf(fIntervals[0]), SkScalarHalf(rec.getWidth()));
97 results->fSize.set(SkScalarHalf(rec.getWidth()), SkScalarHalf(fIntervals[0]));
99 } else if (SkPaint::kRound_Cap != rec.getCap()) {
108 if (SkPaint::kRound_Cap == rec.getCap()) {
155 SkASSERT(SkPaint::kRound_Cap != rec
35 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
45 asPoints(PointData* results, const SkPath& src, const SkStrokeRec& rec, const SkMatrix& matrix, const SkRect* cullRect) const argument
[all...]
/external/skia/src/gpu/
H A DSkGrPixelRef.cpp26 bool SkROLockPixelsPixelRef::onNewLockPixels(LockRec* rec) { argument
38 rec->fPixels = fBitmap.getPixels();
39 rec->fColorTable = NULL;
40 rec->fRowBytes = fBitmap.rowBytes();
/external/skia/src/opts/
H A Dopts_check_x86.cpp352 extern SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl_SSE2(const ProcCoeff& rec,
355 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl(const ProcCoeff& rec,
358 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl(const ProcCoeff& rec, argument
363 SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec,
366 SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec, argument
369 return SkPlatformXfermodeFactory_impl_SSE2(rec, mode);
371 return SkPlatformXfermodeFactory_impl(rec, mode);
/external/skia/src/ports/
H A DSkFontHost_fontconfig.cpp77 const FindRec* rec = (const FindRec*)ctx; local
79 return rec->fStyle == style && fci->isFamilyName(rec->fFamilyName);
96 FindRec rec(familyName, style);
97 SkTypeface* face = SkTypefaceCache::FindByProcAndRef(find_proc, &rec);
114 rec.fFamilyName = outFamilyName.c_str();
115 rec.fStyle = outStyle;
116 face = SkTypefaceCache::FindByProcAndRef(find_proc, &rec);
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
95 nameIndex = rec.fNextName; // record before the ++
96 set(rec.fNames, rec.fNextName++, s, data);
97 valueIndex = rec.fNextValue; // record before the ++
98 set(rec.fValues, rec.fNextValue++, s, 31);
101 nameIndex = rec.fNextName; // record before the ++
102 set(rec.fNames, rec
121 relem(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
166 BMLW rec; local
168 relem(rbyte(s), s, rec, writer); local
[all...]
/external/skia/tests/
H A DGradientTest.cpp50 static void color_gradproc(skiatest::Reporter* reporter, const GradRec& rec) { argument
51 SkAutoTUnref<SkShader> s(new SkColorShader(rec.fColors[0]));
61 static void linear_gradproc(skiatest::Reporter* reporter, const GradRec& rec) { argument
62 SkAutoTUnref<SkShader> s(SkGradientShader::CreateLinear(rec.fPoint,
63 rec.fColors,
64 rec.fPos,
65 rec.fColorCount,
66 rec.fTileMode));
69 rec.gradCheck(reporter, s, &info, SkShader::kLinear_GradientType);
70 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec
73 radial_gradproc(skiatest::Reporter* reporter, const GradRec& rec) argument
87 radial2_gradproc(skiatest::Reporter* reporter, const GradRec& rec) argument
103 sweep_gradproc(skiatest::Reporter* reporter, const GradRec& rec) argument
115 conical_gradproc(skiatest::Reporter* reporter, const GradRec& rec) argument
170 GradRec rec; local
[all...]
/external/srec/srec/crec/
H A Dpriority_q.c75 void remove_non_end_word_from_q(srec *rec, priority_q *pq, word_token *word_token_array, nodeID end_node) argument
92 free_word_token(rec, old_token_index);
H A Dsrec_eosd.c70 EOSrc srec_check_end_of_speech_end(srec* rec) argument
76 EOSrc srec_check_end_of_speech(srec_eos_detector_parms* eosd_parms, srec* rec) argument
87 costdata wrapup_cost = rec->context->wrapup_cost;
88 srec_eos_detector_state* eosd_state = &rec->eosd_state;
90 if (rec->current_search_frame == 1)
93 end_node = rec->context->end_node;
94 eftoken_index = rec->best_token_for_node[ end_node];
96 eftoken = &rec->fsmnode_token_array[ eftoken_index];
100 xftoken_index = rec->current_best_ftoken_index[NODE_INFO_REGULAR];
102 xftoken = &rec
[all...]
H A Dsrec_tokens.c37 int count_fsmarc_token_list(srec* rec, stokenID token_index) argument
43 fsmarc_token* stoken = &rec->fsmarc_token_array[token_index];
53 void initialize_free_fsmarc_tokens(srec *rec) argument
58 for (i = 0;i < rec->fsmarc_token_array_size - 1;i++)
60 rec->fsmarc_token_array[i].next_token_index = i + 1;
62 rec->fsmarc_token_array[rec->fsmarc_token_array_size-1].next_token_index = MAXstokenID;
63 rec->fsmarc_token_freelist = 0;
67 stokenID setup_free_fsmarc_token(srec *rec, FSMarc* arc, arcID fsm_arc_index, miscdata what_to_do_if_fails) argument
73 if (rec
115 free_fsmarc_token(srec *rec, stokenID old_token_index) argument
129 sort_fsmarc_token_list(srec* rec, stokenID* ptoken_index) argument
136 initialize_free_word_tokens(srec *rec) argument
151 get_free_word_token(srec *rec, miscdata what_to_do_if_fails) argument
191 count_fsmnode_token_list(srec* rec, ftokenID token_index) argument
204 initialize_free_fsmnode_tokens(srec *rec) argument
219 get_free_fsmnode_token(srec *rec, miscdata what_to_do_if_fails) argument
253 free_fsmnode_token(srec *rec, ftokenID old_token_index) argument
269 initialize_free_altword_tokens(srec *rec) argument
288 count_altword_token(srec* rec, altword_token* b) argument
300 get_free_altword_token(srec* rec, miscdata what_to_do_if_fails) argument
316 free_altword_token(srec* rec, altword_token* old_token) argument
329 free_altword_token_batch(srec* rec, altword_token* old_token) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c60 static void displayRecognitionError (pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 * tokenNames);
61 static void reportError (pANTLR3_BASE_RECOGNIZER rec);
66 static void reset (pANTLR3_BASE_RECOGNIZER rec);
88 lexer->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_LEXER, sizeHint, state);
90 if (lexer->rec == NULL)
95 lexer->rec->super = lexer;
97 lexer->rec->displayRecognitionError = displayRecognitionError;
98 lexer->rec->reportError = reportError;
99 lexer->rec->reset = reset;
100 lexer->rec
175 reset(pANTLR3_BASE_RECOGNIZER rec) argument
411 reportError(pANTLR3_BASE_RECOGNIZER rec) argument
[all...]
H A Dantlr3rewritestreams.c102 stream->rec->state->rStreams->add(stream->rec->state->rStreams, stream, (void(*)(void *))expungeRS);
171 stream->rec->state->rStreams->add(stream->rec->state->rStreams, stream, (void(*)(void *))expungeRS);
187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
195 if (rec->state->rStreams->count > 0)
200 stream = rec->state->rStreams->remove(rec->state->rStreams, rec->state->rStreams->count - 1);
224 stream->rec
257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
352 antlr3RewriteRuleTOKENStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
373 antlr3RewriteRuleSubtreeStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
395 antlr3RewriteRuleSubtreeStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
418 antlr3RewriteRuleSubtreeStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
442 antlr3RewriteRuleNODEStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
466 antlr3RewriteRuleNODEStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
485 antlr3RewriteRuleNODEStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
[all...]
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dsfobjs.c151 TT_NameEntryRec* rec; local
165 rec = face->name_table.names;
166 for ( n = 0; n < face->num_names; n++, rec++ )
177 if ( rec->nameID == nameid && rec->stringLength > 0 )
179 switch ( rec->platformID )
195 if ( rec->languageID == TT_MAC_LANGID_ENGLISH )
197 else if ( rec->encodingID == TT_MAC_ID_ROMAN )
205 if ( found_win == -1 || ( rec->languageID & 0x3FF ) == 0x009 )
207 switch ( rec
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dtestutils.h198 static inline double ComputeSumSquareError(const uint8 *org, const uint8 *rec, argument
201 return static_cast<double>(libyuv::ComputeSumSquareError(org, rec, size));
205 const int diff = static_cast<int>(org[j]) - static_cast<int>(rec[j]);
/external/chromium_org/third_party/skia/gm/
H A Dgradients_no_texture.cpp151 static void make0(ColorPos* rec) { argument
177 rec->construct(colors, pos, N);
180 static void make1(ColorPos* rec) { argument
186 rec->construct(colors, NULL, SK_ARRAY_COUNT(colors));
189 static void make2(ColorPos* rec) { argument
200 rec->construct(colors, pos, N);
241 ColorPos rec; variable
242 procs[i](&rec); variable
243 SkShader* s = SkGradientShader::CreateLinear(pts, rec.fColors, rec
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleVertices.cpp144 void make_tris(Rec* rec) { argument
148 rec->fMode = SkCanvas::kTriangles_VertexMode;
149 rec->fCount = n * 3;
150 rec->fVerts = new SkPoint[rec->fCount];
153 SkPoint* v = &rec->fVerts[i*3];
160 void make_fan(Rec* rec, int texWidth, int texHeight) { argument
165 rec->fMode = SkCanvas::kTriangleFan_VertexMode;
166 rec->fCount = n + 2;
167 rec
190 make_strip(Rec* rec, int texWidth, int texHeight) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkComposeShader.cpp92 SkShader::Context* SkComposeShader::onCreateContext(const ContextRec& rec, void* storage) const { argument
99 tmpM.setConcat(*rec.fMatrix, this->getLocalMatrix());
104 SkPaint opaquePaint(*rec.fPaint);
107 ContextRec newRec(rec);
119 return SkNEW_PLACEMENT_ARGS(storage, ComposeShaderContext, (*this, rec, contextA, contextB));
123 const SkComposeShader& shader, const ContextRec& rec,
125 : INHERITED(shader, rec)
134 bool SkComposeShader::asACompose(ComposeRec* rec) const {
135 if (rec) {
136 rec
122 ComposeShaderContext( const SkComposeShader& shader, const ContextRec& rec, SkShader::Context* contextA, SkShader::Context* contextB) argument
[all...]
H A DSkMetaData.cpp46 Rec* rec = fRec; local
47 while (rec) {
48 if (kPtr_Type == rec->fType) {
49 PtrPair* pair = (PtrPair*)rec->data();
54 Rec* next = rec->fNext;
55 Rec::Free(rec);
56 rec = next;
65 const Rec* rec = src.fRec; local
66 while (rec)
68 this->set(rec
120 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1); local
147 const Rec* rec = this->find(name, kS32_Type); local
160 const Rec* rec = this->find(name, kScalar_Type); local
173 const Rec* rec = this->find(name, kScalar_Type); local
186 const Rec* rec = this->find(name, kPtr_Type); local
203 const Rec* rec = this->find(name, kString_Type); local
210 const Rec* rec = this->find(name, kBool_Type); local
222 const Rec* rec = this->find(name, kData_Type); local
235 const Rec* rec = fRec; local
246 Rec* rec = fRec; local
334 Free(Rec* rec) argument
[all...]
H A DSkPictureData.cpp226 void SkPictureData::WriteFactories(SkWStream* stream, const SkFactorySet& rec) { argument
227 int count = rec.count();
231 rec.copyToArray(array);
254 void SkPictureData::WriteTypefaces(SkWStream* stream, const SkRefCntSet& rec) { argument
255 int count = rec.count();
261 rec.copyToArray((SkRefCnt**)array);

Completed in 2250 milliseconds

1234567891011>>