Home
last modified time | relevance | path

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

/external/freetype/src/base/
Dftcalc.c805 FT_UInt32 root, rem_hi, rem_lo, test_div; in FT_SqrtFixed() local
821 test_div = ( root << 1 ) + 1; in FT_SqrtFixed()
823 if ( rem_hi >= test_div ) in FT_SqrtFixed()
825 rem_hi -= test_div; in FT_SqrtFixed()
/external/openssl/crypto/bn/
Dbntest.c100 int test_div(BIO *bp,BN_CTX *ctx);
223 if (!test_div(out,ctx)) goto err; in main()
412 int test_div(BIO *bp, BN_CTX *ctx) in test_div() function
/external/freetype/src/truetype/
Dttinterp.c1290 FT_UInt32 root, rem, test_div;
1305 test_div = ( root << 1 ) + 1;
1307 if ( rem >= test_div )
1309 rem -= test_div;