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.hh330 unsigned int xBytes, yBytes; in remove_padding() local
331 xBytes = yBytes = 0; in remove_padding()
332 if (flag & FLAG_X_SHORT) xBytes = 1; in remove_padding()
333 else if ((flag & FLAG_X_SAME) == 0) xBytes = 2; in remove_padding()
338 coordBytes += (xBytes + yBytes) * repeat; in remove_padding()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py327 def flagEncodeCoords(flag, x, y, xBytes, yBytes): argument
328 flagEncodeCoord(flag, flagXsame|flagXShort, x, xBytes)
953 xBytes = yBytes = 0
955 xBytes = 1
957 xBytes = 2
962 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.cc1698 jbyteArray xBytes, jbyteArray yBytes, in NativeCrypto_EC_GROUP_new_arbitrary() argument
1720 !arrayToBignum(env, bBytes, &b) || !arrayToBignum(env, xBytes, &x) || in NativeCrypto_EC_GROUP_new_arbitrary()
2057 jbyteArray xBytes = bignumToArray(env, x.get(), "x"); in NativeCrypto_EC_POINT_get_affine_coordinates() local
2061 env->SetObjectArrayElement(joa, 0, xBytes); in NativeCrypto_EC_POINT_get_affine_coordinates()