Home
last modified time | relevance | path

Searched refs:skew (Results 1 - 25 of 49) sorted by relevance

12

/third_party/jerryscript/targets/mbedos5/source/
H A Djerry_port_mbed.c69 static uint32_t skew = 0; in jerry_port_get_current_time() local
83 skew = 0; in jerry_port_get_current_time()
85 skew = (skew + 33) % 1000; in jerry_port_get_current_time()
87 result += (curr_tick / 1000 - skew) % 1000; in jerry_port_get_current_time()
/third_party/skia/docs/examples/
H A DCanvas_skew.cpp11 canvas->skew(-.5, 0); in REG_FIDDLE()
15 canvas->skew(0, .5); in REG_FIDDLE()
19 canvas->skew(-.5, .5); in REG_FIDDLE()
H A DCanvas_drawLine.cpp11 canvas->skew(1, 0); in REG_FIDDLE()
13 canvas->skew(-2, 0); in REG_FIDDLE()
H A DCanvas_drawLine_2.cpp11 canvas->skew(1, 0); in REG_FIDDLE()
13 canvas->skew(-2, 0); in REG_FIDDLE()
/third_party/skia/gm/
H A Dglyph_pos.cpp65 SkMatrix skew; in draw_gm() local
66 skew.setIdentity(); in draw_gm()
67 skew.setSkewX(8.0f / 25.0f); in draw_gm()
68 skew.setSkewY(2.0f / 25.0f); in draw_gm()
69 canvas->concat(skew); in draw_gm()
H A Dtext_scale_skew.cpp28 for (float skew : { -0.5f, 0.0f, 0.5f }) { in DEF_SIMPLE_GM()
29 font.setSkewX(skew); in DEF_SIMPLE_GM()
H A Ddftext.cpp181 // check skew
185 canvas->skew(0.0f, 0.151515f);
192 canvas->skew(0.5f, 0.0f);
H A Dcolrv1.cpp61 return SkString("skew"); in testTypeToString()
151 canvas->skew(fSkewX, 0);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DShaderInterpTest.cpp26 void draw(GLuint program, float skew) in draw() argument
33 vertices[2] = {0.0, 1.0 * skew, 0.0, skew}; in draw()
/third_party/skia/tests/
H A DFontTest.cpp90 for (float skew : skews) { in DEF_TEST()
91 font.setSkewX(skew); in DEF_TEST()
H A DGrQuadBufferTest.cpp48 SkMatrix skew; in generate_quads() local
49 skew.setSkew(0.5f, 0.5f); in generate_quads()
66 quad = GrQuad::MakeFromRect(rect, skew); in generate_quads()
H A DGrQuadCropTest.cpp262 SkMatrix skew; in TEST() local
263 skew.setSkewX(0.3f); in TEST()
264 skew.setSkewY(0.04f); in TEST()
265 test_crop_fully_covered(r, skew); in TEST()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dmatrix_decompose.hpp37 tvec3<T, P> & scale, tquat<T, P> & orientation, tvec3<T, P> & translation, tvec3<T, P> & skew, tvec4<T, P> & perspective);
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dttcolr.c682 apaint->u.skew.paint.p = child_table_p; in read_paint()
683 apaint->u.skew.paint.insert_root_transform = 0; in read_paint()
685 apaint->u.skew.x_skew_angle = F2DOT14_TO_FIXED( FT_NEXT_SHORT( p ) ); in read_paint()
686 apaint->u.skew.y_skew_angle = F2DOT14_TO_FIXED( FT_NEXT_SHORT( p ) ); in read_paint()
691 apaint->u.skew.center_x = INT_TO_FIXED( FT_NEXT_SHORT( p ) ); in read_paint()
692 apaint->u.skew.center_y = INT_TO_FIXED( FT_NEXT_SHORT( p ) ); in read_paint()
696 apaint->u.skew.center_x = 0; in read_paint()
697 apaint->u.skew.center_y = 0; in read_paint()
/third_party/node/lib/
H A Dpunycode.js20 const skew = 38;
196 return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));
/third_party/icu/icu4c/source/test/intltest/
H A Dpunyref.cpp51 enum { base = 36, tmin = 1, tmax = 26, skew = 38, damp = 700, enumerator
123 return k + (base - tmin + 1) * delta / (delta + skew); in adapt()
/third_party/node/deps/openssl/openssl/crypto/
H A Dpunycode.c19 static const unsigned int skew = 38; variable
40 * return k + (((base - tmin + 1) * delta) div (delta + skew))
56 return k + (((base - tmin + 1) * delta) / (delta + skew)); in adapt()
/third_party/openssl/crypto/
H A Dpunycode.c19 static const unsigned int skew = 38; variable
40 * return k + (((base - tmin + 1) * delta) div (delta + skew))
56 return k + (((base - tmin + 1) * delta) / (delta + skew)); in adapt()
/third_party/alsa-utils/topology/nhlt/intel/
H A Ddmic-nhlt.c67 long skew = 0; in set_pdm_data() local
77 { "skew", SND_CONFIG_TYPE_INTEGER, NULL, &skew, NULL}, in set_pdm_data()
86 polarity_b, clk_edge, skew); in set_pdm_data()
446 * skew 0
/third_party/alsa-utils/topology/nhlt/intel/dmic/
H A Ddmic-process.h21 int enable_b, int polarity_a, int polarity_b, int clk_edge, int skew);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DCVSymbolVisitor.cpp77 if (auto EC = visitSymbolRecord(I, InitialOffset + Symbols.skew())) in visitSymbolStream()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DPunycodeReference.java53 private static final int skew = 38; field in PunycodeReference
135 return k + (base - tmin + 1) * delta / (delta + skew); in adapt()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DPunycodeReference.java50 private static final int skew = 38; field in PunycodeReference
132 return k + (base - tmin + 1) * delta / (delta + skew); in adapt()
/third_party/alsa-lib/include/
H A Dseq_event.h101 /** Queue timer skew; event data type = #snd_seq_ev_queue_control_t */
275 /** Queue skew values */
277 unsigned int value; /**< skew value */
278 unsigned int base; /**< skew base */
289 snd_seq_queue_skew_t skew; /**< queue skew */ member
/third_party/skia/src/core/
H A DSkFont.cpp107 void SkFont::setSkewX(SkScalar skew) { in setSkewX() argument
108 fSkewX = skew; in setSkewX()

Completed in 22 milliseconds

12