Searched refs:rec (Results 176 - 200 of 515) sorted by relevance

1234567891011>>

/external/openssl/ssl/
H A Dt1_enc.c686 SSL3_RECORD *rec; local
700 rec= &(s->s3->wrec);
715 if ( rec->data != rec->input)
720 "%s:%d: rec->data != rec->input\n",
722 else if (RAND_bytes(rec->input, ivlen) <= 0)
735 rec= &(s->s3->rrec);
748 memmove(rec->data,rec
980 SSL3_RECORD *rec; local
[all...]
H A Ds3_enc.c479 SSL3_RECORD *rec; local
488 rec= &(s->s3->wrec);
497 rec= &(s->s3->rrec);
507 memmove(rec->data,rec->input,rec->length);
508 rec->input=rec->data;
512 l=rec->length;
525 memset(&rec
714 SSL3_RECORD *rec; local
[all...]
/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/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/tests/
H A DBlurTest.cpp435 SkDrawLooper::BlurShadowRec rec; local
436 bool success = lp->asABlurShadow(&rec);
439 REPORTER_ASSERT(reporter, rec.fSigma == sigma);
440 REPORTER_ASSERT(reporter, rec.fOffset.x() == dx);
441 REPORTER_ASSERT(reporter, rec.fOffset.y() == dy);
442 REPORTER_ASSERT(reporter, rec.fColor == color);
443 REPORTER_ASSERT(reporter, rec.fStyle == style);
444 REPORTER_ASSERT(reporter, rec.fQuality == quality);
451 SkDrawLooper::BlurShadowRec rec; local
452 bool success = lp->asABlurShadow(&rec);
532 SkMaskFilter::BlurRec rec; local
559 SkMaskFilter::BlurRec rec; local
[all...]
/external/skia/tests/
H A DBlurTest.cpp435 SkDrawLooper::BlurShadowRec rec; local
436 bool success = lp->asABlurShadow(&rec);
439 REPORTER_ASSERT(reporter, rec.fSigma == sigma);
440 REPORTER_ASSERT(reporter, rec.fOffset.x() == dx);
441 REPORTER_ASSERT(reporter, rec.fOffset.y() == dy);
442 REPORTER_ASSERT(reporter, rec.fColor == color);
443 REPORTER_ASSERT(reporter, rec.fStyle == style);
444 REPORTER_ASSERT(reporter, rec.fQuality == quality);
451 SkDrawLooper::BlurShadowRec rec; local
452 bool success = lp->asABlurShadow(&rec);
532 SkMaskFilter::BlurRec rec; local
559 SkMaskFilter::BlurRec rec; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapCache.cpp64 const BitmapRec& rec = static_cast<const BitmapRec&>(baseRec); local
67 *result = rec.fBitmap;
94 BitmapRec* rec = SkNEW_ARGS(BitmapRec, (src.getGenerationID(), invScaleX, invScaleY, local
96 CHECK_LOCAL(localCache, add, Add, rec);
117 BitmapRec* rec = SkNEW_ARGS(BitmapRec, (genID, SK_Scalar1, SK_Scalar1, subset, result)); local
119 CHECK_LOCAL(localCache, add, Add, rec);
142 const MipMapRec& rec = static_cast<const MipMapRec&>(baseRec); local
145 *result = SkRef(rec.fMipMap);
H A DSkFilterShader.cpp67 SkShader::Context* SkFilterShader::onCreateContext(const ContextRec& rec, void* storage) const { argument
69 SkShader::Context* shaderContext = fShader->createContext(rec, shaderContextStorage);
73 return SkNEW_PLACEMENT_ARGS(storage, FilterShaderContext, (*this, shaderContext, rec));
82 const ContextRec& rec)
83 : INHERITED(filterShader, rec)
80 FilterShaderContext(const SkFilterShader& filterShader, SkShader::Context* shaderContext, const ContextRec& rec) argument
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...]
H A DSkPictureShader.cpp138 SkShader::Context* SkPictureShader::onCreateContext(const ContextRec& rec, void* storage) const { argument
139 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(*rec.fMatrix, rec.fLocalMatrix));
143 return PictureShaderContext::Create(storage, *this, rec, bitmapShader);
149 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) {
151 (shader, rec, bitmapShader));
160 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader)
161 : INHERITED(shader, rec)
165 fBitmapShaderContext = bitmapShader->createContext(rec, fBitmapShaderContextStorage);
148 Create(void* storage, const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) argument
159 PictureShaderContext( const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) argument
/external/skia/src/core/
H A DSkPixelRef.cpp182 bool SkPixelRef::lockPixels(LockRec* rec) { argument
191 LockRec rec; local
192 if (!this->onNewLockPixels(&rec)) {
195 SkASSERT(!rec.isZero()); // else why did onNewLock return true?
196 fRec = rec;
199 *rec = fRec;
204 LockRec rec; local
205 return this->lockPixels(&rec);
H A DSkPaint.cpp1560 static bool tooBigForLCD(const SkScalerContext::Rec& rec) { argument
1561 SkScalar area = rec.fPost2x2[0][0] * rec.fPost2x2[1][1] -
1562 rec.fPost2x2[1][0] * rec.fPost2x2[0][1];
1563 SkScalar size = SkScalarSqrt(SkScalarAbs(area)) * rec.fTextSize;
1580 Rec* rec) {
1587 rec->fOrigFontID = typeface->uniqueID();
1588 rec->fFontID = rec
1577 MakeRec(const SkPaint& paint, const SkDeviceProperties* deviceProperties, const SkMatrix* deviceMatrix, Rec* rec) argument
1783 PostMakeRec(const SkPaint&, SkScalerContext::Rec* rec) argument
1836 SkScalerContext::Rec rec; local
1975 GetMaskPreBlend(const SkScalerContext::Rec& rec) argument
[all...]
/external/skia/src/opts/
H A DSkXfermode_opts_arm_neon.h8 SkNEONProcCoeffXfermode(const ProcCoeff& rec, SkXfermode::Mode mode, argument
10 : INHERITED(rec, mode), fProcSIMD(procSIMD) {}
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/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp84 if (Expr *rec = E->getInstanceReceiver()) {
85 rec = rec->IgnoreParenImpCasts();
86 if (rec->getType().getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
91 Pass.TA.reportError(err, rec->getLocStart());
95 if (isGlobalVar(rec) &&
100 Pass.TA.reportError(err, rec->getLocStart());
104 if (E->getMethodFamily() == OMF_release && isDelegateMessage(rec)) {
108 "properly retained", rec->getLocStart());
131 Expr *rec local
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_enc.c407 SSL3_RECORD *rec; local
416 rec= &(s->s3->wrec);
425 rec= &(s->s3->rrec);
435 memmove(rec->data,rec->input,rec->length);
436 rec->input=rec->data;
440 l=rec->length;
453 memset(&rec
631 SSL3_RECORD *rec; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DMaster.java278 Record rec = included.nextRecord();
279 if (rec != null)
280 return rec;
284 Record rec = nextGenerated();
285 if (rec != null)
286 return rec;
386 Record rec = null;
388 rec = _nextRecord();
391 if (rec == null) {
395 return rec;
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSIncoming.java209 DNSRecord rec = this.readAnswer(source);
210 if (rec != null) {
212 _answers.add(rec);
219 DNSRecord rec = this.readAnswer(source);
220 if (rec != null) {
222 _authoritativeAnswers.add(rec);
229 DNSRecord rec = this.readAnswer(source);
230 if (rec != null) {
232 _additionals.add(rec);
296 DNSRecord rec
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dttgsubtable.h349 void ParseScriptList(FT_Bytes raw, TScriptList *rec);
350 void ParseScript(FT_Bytes raw, TScript *rec);
351 void ParseLangSys(FT_Bytes raw, TLangSys *rec);
352 void ParseFeatureList(FT_Bytes raw, TFeatureList *rec);
353 void ParseFeature(FT_Bytes raw, TFeature *rec);
354 void ParseLookupList(FT_Bytes raw, TLookupList *rec);
355 void ParseLookup(FT_Bytes raw, TLookup *rec);
356 void ParseCoverage(FT_Bytes raw, TCoverageFormatBase **rec);
357 void ParseCoverageFormat1(FT_Bytes raw, TCoverageFormat1 *rec);
358 void ParseCoverageFormat2(FT_Bytes raw, TCoverageFormat2 *rec);
[all...]
/external/dnsmasq/src/
H A Drfc1035.c1142 struct mx_srv_record *rec; local
1174 for (rec = daemon->mxnames; rec; rec = rec->next)
1175 rec->offset = 0;
1455 for (rec = daemon->mxnames; rec; rec = rec
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurDrawLooper.cpp100 bool SkBlurDrawLooper::asABlurShadow(BlurShadowRec* rec) const {
105 if (rec) {
106 rec->fSigma = fSigma;
107 rec->fColor = fBlurColor;
108 rec->fOffset.set(fDx, fDy);
109 rec->fStyle = kNormal_SkBlurStyle;
110 rec->fQuality = (fBlurFlags & kHighQuality_BlurFlag) ?
/external/chromium_org/third_party/skia/src/opts/
H A Dopts_check_x86.cpp374 extern SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl_SSE2(const ProcCoeff& rec,
377 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl(const ProcCoeff& rec,
380 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl(const ProcCoeff& rec, argument
385 SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec,
388 SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec, argument
391 return SkPlatformXfermodeFactory_impl_SSE2(rec, mode);
393 return SkPlatformXfermodeFactory_impl(rec, mode);
/external/chromium_org/third_party/skia/samplecode/
H A DSampleSlides.cpp345 static void make_tris(Rec* rec) { argument
349 rec->fMode = SkCanvas::kTriangles_VertexMode;
350 rec->fCount = n * 3;
351 rec->fVerts = new SkPoint[rec->fCount];
354 SkPoint* v = &rec->fVerts[i*3];
361 static void make_fan(Rec* rec, int texWidth, int texHeight) { argument
366 rec->fMode = SkCanvas::kTriangleFan_VertexMode;
367 rec->fCount = n + 2;
368 rec
391 make_strip(Rec* rec, int texWidth, int texHeight) argument
[all...]
/external/skia/samplecode/
H A DSampleSlides.cpp345 static void make_tris(Rec* rec) { argument
349 rec->fMode = SkCanvas::kTriangles_VertexMode;
350 rec->fCount = n * 3;
351 rec->fVerts = new SkPoint[rec->fCount];
354 SkPoint* v = &rec->fVerts[i*3];
361 static void make_fan(Rec* rec, int texWidth, int texHeight) { argument
366 rec->fMode = SkCanvas::kTriangleFan_VertexMode;
367 rec->fCount = n + 2;
368 rec
391 make_strip(Rec* rec, int texWidth, int texHeight) argument
[all...]
/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...]

Completed in 545 milliseconds

1234567891011>>