Home
last modified time | relevance | path

Searched refs:ystr (Results 1 – 3 of 3) sorted by relevance

/external/freetype/src/base/
Dftsynth.c95 FT_Pos xstr, ystr; in FT_GlyphSlot_Embolden() local
111 ystr = xstr; in FT_GlyphSlot_Embolden()
114 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr ); in FT_GlyphSlot_Embolden()
122 ystr &= ~63; in FT_GlyphSlot_Embolden()
130 if ( ( ystr >> 6 ) > FT_INT_MAX || ( ystr >> 6 ) < FT_INT_MIN ) in FT_GlyphSlot_Embolden()
133 FT_TRACE1(( "too strong emboldening parameter ystr=%d\n", ystr )); in FT_GlyphSlot_Embolden()
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr ); in FT_GlyphSlot_Embolden()
149 slot->advance.y += ystr; in FT_GlyphSlot_Embolden()
152 slot->metrics.height += ystr; in FT_GlyphSlot_Embolden()
154 slot->metrics.vertAdvance += ystr; in FT_GlyphSlot_Embolden()
[all …]
Dftbitmap.c317 FT_Int xstr, ystr; in FT_Bitmap_Embolden() local
331 ystr = (FT_Int)FT_PIX_ROUND( yStrength ) >> 6; in FT_Bitmap_Embolden()
333 if ( xstr == 0 && ystr == 0 ) in FT_Bitmap_Embolden()
335 else if ( xstr < 0 || ystr < 0 ) in FT_Bitmap_Embolden()
367 ystr *= 3; in FT_Bitmap_Embolden()
376 (FT_UInt)xstr, (FT_UInt)ystr ); in FT_Bitmap_Embolden()
383 p = bitmap->buffer + pitch * ystr; in FT_Bitmap_Embolden()
447 for ( x = 1; x <= ystr; x++ ) in FT_Bitmap_Embolden()
461 bitmap->rows += (FT_UInt)ystr; in FT_Bitmap_Embolden()
/external/nos/test/system-test-harness/src/
Dkeymaster-import-key-tests.cc476 std::unique_ptr<uint8_t []> ystr(new uint8_t[field_size]); in TEST_F() local
480 EXPECT_EQ(BN_bn2le_padded(ystr.get(), field_size, y.get()), 1); in TEST_F()
501 request.mutable_ec()->set_y(ystr.get(), field_size); in TEST_F()