Home
last modified time | relevance | path

Searched refs:xBytes (Results 1 – 4 of 4) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-ot-glyf-table.hh490 unsigned int xBytes, yBytes; in trim_padding() local
491 xBytes = yBytes = 0; in trim_padding()
492 if (flag & FLAG_X_SHORT) xBytes = 1; in trim_padding()
493 else if ((flag & FLAG_X_SAME) == 0) xBytes = 2; in trim_padding()
498 coord_bytes += (xBytes + yBytes) * repeat; in trim_padding()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py483 def flagEncodeCoords(flag, x, y, xBytes, yBytes): argument
484 flagEncodeCoord(flag, flagXsame|flagXShort, x, xBytes)
1113 xBytes = yBytes = 0
1115 xBytes = 1
1117 xBytes = 2
1122 coordBytes += (xBytes + yBytes) * repeat
/external/boringssl/src/ssl/test/runner/
Dkey_agreement.go298 xBytes := x.Bytes()
299 copy(preMasterSecret[len(preMasterSecret)-len(xBytes):], xBytes)
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc1699 jbyteArray xBytes, jbyteArray yBytes, in NativeCrypto_EC_GROUP_new_arbitrary() argument
1721 !arrayToBignum(env, bBytes, &b) || !arrayToBignum(env, xBytes, &x) || in NativeCrypto_EC_GROUP_new_arbitrary()
2061 jbyteArray xBytes = bignumToArray(env, x.get(), "x"); in NativeCrypto_EC_POINT_get_affine_coordinates() local
2065 env->SetObjectArrayElement(joa, 0, xBytes); in NativeCrypto_EC_POINT_get_affine_coordinates()