Home | History | Annotate | Download | only in codec

Lines Matching refs:idx

224         for (int idx = 0; idx < text.length(); idx++) {
225 char ch = text.charAt(idx);
361 int idx = 0;
363 for (; idx < end - 2; idx += 3) {
364 int data = (bytes[idx] & 0xff) << 16 | (bytes[idx + 1] & 0xff) << 8
365 | bytes[idx + 2] & 0xff;
372 if (idx == end - 2) {
373 int data = (bytes[idx] & 0xff) << 16 | (bytes[idx + 1] & 0xff) << 8;
379 } else if (idx == end - 1) {
380 int data = (bytes[idx] & 0xff) << 16;
408 for (int idx = 0; idx < end; idx++) {
409 int v = bytes[idx] & 0xff;
443 for (int idx = 0; idx < length; idx++) {
444 char ch = str.charAt(idx);
458 for (int idx = 0; idx < length; idx++) {
459 char ch = str.charAt(idx);
482 for (int idx = 0; idx < length; idx++) {
483 char ch = str.charAt(idx);
486 if (prev == '.' || idx == length - 1)
570 for (int idx = 0; idx < bytes.length; idx++) {
571 int v = bytes[idx] & 0xff;