/third_party/skia/experimental/sktext/src/ |
H A D | Line.cpp | 7 LogicalLine::LogicalLine(const Stretch& stretch, const Stretch& spaces, SkScalar verticalOffset, bool hardLineBreak) in LogicalLine() argument 8 : fTextStart(stretch.glyphStart()) in LogicalLine() 9 , fTextEnd(stretch.glyphEnd()) in LogicalLine() 11 , fText(stretch.textRange()) in LogicalLine() 13 , fTextWidth(stretch.width()) in LogicalLine() 18 SkASSERT(stretch.isEmpty() || in LogicalLine() 20 (stretch.glyphEnd() == spaces.glyphStart())); in LogicalLine() 22 if (!stretch.isEmpty()) { in LogicalLine() 23 this->fTextMetrics.merge(stretch.textMetrics()); in LogicalLine()
|
H A D | Line.h | 174 LogicalLine(const Stretch& stretch, const Stretch& spaces, SkScalar verticalOffset, bool hardLineBreak);
|
H A D | Text.cpp | 454 void ShapedText::addLine(WrappedText* wrappedText, SkUnicode* unicode, Stretch& stretch, Stretch& spaces, bool hardLineBreak) { 456 Stretch lineStretch = stretch; 499 stretch.clean();
|
/third_party/skia/modules/skparagraph/src/ |
H A D | TextWrapper.h | 69 void extend(TextStretch& stretch) { in extend() argument 70 fMetrics.add(stretch.fMetrics); in extend() 71 fEnd = stretch.fEnd; in extend() 72 fWidth += stretch.fWidth; in extend() 73 stretch.clean(); in extend()
|
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | ocb128.c | 221 unsigned char stretch[24], nonce[16]; in CRYPTO_ocb128_setiv() local 247 memcpy(stretch, ktop, 16); in CRYPTO_ocb128_setiv() 248 ocb_block_xor(ktop, ktop + 1, 8, stretch + 16); in CRYPTO_ocb128_setiv() 255 ocb_block_lshift(stretch + (bottom / 8), shift, ctx->sess.offset.c); in CRYPTO_ocb128_setiv() 259 (*(stretch + (bottom / 8) + 16) & mask) >> (8 - shift); in CRYPTO_ocb128_setiv()
|
/third_party/openssl/crypto/modes/ |
H A D | ocb128.c | 221 unsigned char stretch[24], nonce[16]; in CRYPTO_ocb128_setiv() local 247 memcpy(stretch, ktop, 16); in CRYPTO_ocb128_setiv() 248 ocb_block_xor(ktop, ktop + 1, 8, stretch + 16); in CRYPTO_ocb128_setiv() 255 ocb_block_lshift(stretch + (bottom / 8), shift, ctx->sess.offset.c); in CRYPTO_ocb128_setiv() 259 (*(stretch + (bottom / 8) + 16) & mask) >> (8 - shift); in CRYPTO_ocb128_setiv()
|
/third_party/skia/tests/ |
H A D | RecordTest.cpp | 73 Stretch stretch; in DEF_TEST() local 74 stretch.apply(&record); in DEF_TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | FramebufferVk.cpp | 233 std::swap(params->stretch[0], params->stretch[1]); in AdjustBlitResolveParametersForPreRotation() 240 std::swap(params->stretch[0], params->stretch[1]); in AdjustBlitResolveParametersForPreRotation() 249 std::swap(params->stretch[0], params->stretch[1]); in AdjustBlitResolveParametersForPreRotation() 254 std::swap(params->stretch[0], params->stretch[1]); in AdjustBlitResolveParametersForPreRotation() 954 // Calculate the stretch factor prior to any clipping, as it needs to remain constant. in blit() 955 const double stretch[ in blit() local [all...] |
H A D | UtilsVk.h | 122 // |stretch| is SourceDimension / DestDimension used to transfer dst coordinates to source. 123 float stretch[2]; member 406 float stretch[2] = {}; member 421 float stretch[2] = {}; member
|
H A D | UtilsVk.cpp | 379 offset[0] = params.dstOffset[0] * params.stretch[0] - params.srcOffset[0] * srcOffsetFactorX; in CalculateBlitOffset() 380 offset[1] = params.dstOffset[1] * params.stretch[1] - params.srcOffset[1] * srcOffsetFactorY; in CalculateBlitOffset() 2300 shaderParams.stretch[0] = params.stretch[0]; in blitResolveImpl() 2301 shaderParams.stretch[1] = params.stretch[1]; in blitResolveImpl() 2555 shaderParams.stretch[0] = params.stretch[0]; in stencilBlitResolveNoShaderExport() 2556 shaderParams.stretch[1] = params.stretch[ in stencilBlitResolveNoShaderExport() [all...] |
/third_party/skia/src/gpu/geometry/ |
H A D | GrPathUtils.cpp | 39 SkScalar stretch = viewM.getMaxScale(); in scaleToleranceToSrc() local 41 if (stretch < 0) { in scaleToleranceToSrc() 49 stretch = std::max(stretch, mat.mapRadius(SK_Scalar1)); in scaleToleranceToSrc() 53 if (stretch <= 0) { in scaleToleranceToSrc() 58 srcTol = devTol / stretch; in scaleToleranceToSrc()
|
/third_party/skia/experimental/sktext/include/ |
H A D | Text.h | 154 void addLine(WrappedText* wrappedText, SkUnicode* unicode, Stretch& stretch, Stretch& spaces, bool hardLineBreak);
|
/third_party/FatFs/source/ |
H A D | ff.h | 502 FRESULT dir_next(DIR *dp, int stretch);
|
H A D | ff.c | 1224 DWORD clst /* Cluster# to stretch, 0:Create a new chain */ in create_chain() 1491 FRESULT dir_next ( /* FR_OK(0):succeeded, FR_NO_FILE:End of table, FR_DENIED:Could not stretch */ in dir_next() 1493 int stretch /* 0: Do not stretch table, 1: Stretch table if needed */ in dir_next() 1519 if (!stretch) { /* If no stretch, report EOT */ in dir_next() 1528 if (!stretch) dp->sect = 0; /* (this line is to suppress compiler warning) */ in dir_next() 1575 res = dir_next(dp, 1); /* Next entry with table stretch enabled */ in dir_alloc() 3702 clst = create_chain(&fp->obj, fp->clust); /* Follow or stretch cluster chain on the FAT */ in f_write() 4161 clst = create_chain(&fp->obj, clst); /* Follow chain with forceed stretch */ in f_lseek() [all...] |
/third_party/weex-loader/deps/weex-styler/lib/ |
H A D | validator.js | 2127 var regexpFirst = /(stretch|round|repeat|space)$/; 2128 var URL_REGEXP_SECOND = /^(.*)(stretch|round|repeat|space)$/; 2258 resizeMode: genEnumValidator(['cover', 'contain', 'stretch', 'center']), 2327 borderImageRepeat: genEnumValidator(['stretch', 'round', 'repeat', 'space']) 2358 alignItems: genEnumValidator(['stretch', 'flex-start', 'flex-end', 'center', 'baseline']), 2359 alignContent: genEnumValidator(['stretch', 'flex-start', 'flex-end', 'center', 'space-between', 'space-around']), 2360 alignSelf: genEnumValidator(["auto", "flex-start", "flex-end", "center", "baseline", "stretch"]) 2829 alignItems: genEnumValidator(['stretch', 'flex-start', 'flex-end', 'center']), 2952 alignItems: genEnumValidator(['stretch', 'flex-start', 'flex-end', 'center', 'baseline']), 2953 alignContent: genEnumValidator(['stretch', 'fle [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 2213 % Computer Modern typewriter fonts have zero interword stretch (and 2632 % we put a little stretch before and after the breakable chars, to help 4798 % sufficient for this purpose, as it ignores stretch and shrink parts 4949 % to column. It still won't often be perfect, because of the stretch 5001 % A bit of stretch before each entry for the benefit of balancing 5933 % Don't allow stretch, though. 9684 % stretch added to depend on the line length, hence the dependence on 9905 % interword stretch (and shrink), and it is reasonable to expect all
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmlparse.c | 7277 const size_t stretch = sizeof(XML_Char); /* can be 4 bytes */ in poolBytesToAllocateFor() local 7282 if (blockSize > (int)(INT_MAX / stretch)) in poolBytesToAllocateFor() 7286 const int stretchedBlockSize = blockSize * (int)stretch; in poolBytesToAllocateFor()
|
/third_party/python/Modules/expat/ |
H A D | xmlparse.c | 7299 const size_t stretch = sizeof(XML_Char); /* can be 4 bytes */ in poolBytesToAllocateFor() local 7304 if (blockSize > (int)(INT_MAX / stretch)) in poolBytesToAllocateFor() 7308 const int stretchedBlockSize = blockSize * (int)stretch; in poolBytesToAllocateFor()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |