Home
last modified time | relevance | path

Searched refs:aPos (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/fpdftext/
Dcpdf_linkextract.cpp239 auto aPos = str->Find(L'@'); in CheckMailLink() local
241 if (!aPos.has_value() || aPos.value() == 0 || aPos == str->GetLength() - 1) in CheckMailLink()
245 size_t pPos = aPos.value(); // Used to track the position of '@' or '.'. in CheckMailLink()
246 for (size_t i = aPos.value(); i > 0; i--) { in CheckMailLink()
252 if (i == aPos.value()) { in CheckMailLink()
267 aPos = str->Find(L'@'); in CheckMailLink()
268 if (!aPos.has_value() || aPos.value() == 0) in CheckMailLink()
275 auto ePos = str->Find(L'.', aPos.value() + 1); in CheckMailLink()
276 if (!ePos.has_value() || ePos.value() == aPos.value() + 1) in CheckMailLink()
282 for (size_t i = aPos.value() + 1; i < nLen; i++) { in CheckMailLink()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1094 for (int aPos = 0; aPos < aLen; ++aPos) in modMultiply()
1096 long aVal = a[aPos]; in modMultiply()
1097 int cOff = aPos; in modMultiply()
1271 int aPos = 0; in modMultiplyAlt() local
1274 long aVal = c[aPos] >>> k; in modMultiplyAlt()
1286 add(c, aPos + ci[index], c, bOff, bMax); in modMultiplyAlt()
1296 while (++aPos < aLen); in modMultiplyAlt()
1451 for (int aPos = 0; aPos < aLen; ++aPos) in multiply()
1453 long aVal = a[aPos]; in multiply()
1454 int cOff = aPos; in multiply()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DLongArray.java1095 for (int aPos = 0; aPos < aLen; ++aPos) in modMultiply()
1097 long aVal = a[aPos]; in modMultiply()
1098 int cOff = aPos; in modMultiply()
1272 int aPos = 0; in modMultiplyAlt() local
1275 long aVal = c[aPos] >>> k; in modMultiplyAlt()
1287 add(c, aPos + ci[index], c, bOff, bMax); in modMultiplyAlt()
1297 while (++aPos < aLen); in modMultiplyAlt()
1452 for (int aPos = 0; aPos < aLen; ++aPos) in multiply()
1454 long aVal = a[aPos]; in multiply()
1455 int cOff = aPos; in multiply()
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DAesGcmHkdfAeadCrypter.java115 private static boolean arrayEqualOn(byte[] a, int aPos, byte[] b, int bPos, int length) { in arrayEqualOn() argument
117 if (a[aPos + i] != b[bPos + i]) { in arrayEqualOn()
/external/deqp/modules/gles2/performance/
Des2pTextureUploadTests.cpp198 deUint32 aPos = gl.getAttribLocation (m_program->getProgram(), "a_pos"); in init() local
199 gl.enableVertexAttribArray (aPos); in init()
200 gl.vertexAttribPointer (aPos, 2, GL_FLOAT, GL_FALSE, 0, &quadCoords[0]); in init()
/external/antlr/runtime/ObjC/Framework/
DRecognitionException.m277 - (void)setCharPositionInLine:(NSUInteger)aPos
279 charPositionInLine = aPos;