Lines Matching defs:at
6 * You may obtain a copy of the License at
40 * If "mode" is kHexDumpLocal, we start at offset zero, and show a full
117 * We can overrun logcat easily by writing at full speed. On the
198 * Allocate a bit vector with enough space to hold at least the specified
419 size_t at = strlen(str);
422 if ((at >= 2) && (str[0] == 'L') && (str[at - 1] == ';')) {
423 at -= 2; /* Two fewer chars to copy. */
427 newStr = malloc(at + 1); /* Add one for the '\0'. */
431 newStr[at] = '\0';
433 while (at > 0) {
434 at--;
435 newStr[at] = (str[at] == '/') ? '.' : str[at];
452 char* at;
459 newStr = at = malloc(length + 1); /* + 1 for the '\0' */
466 *(at++) = 'L';
474 *(at++) = c;
478 *(at++) = ';';
481 *at = '\0';
627 * at iteration==1 is actually (minSleep * 2).