Home
last modified time | relevance | path

Searched refs:head (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/uncrypt/
Duncrypt.cpp293 int head = 0, tail = 0; in produce_block_map() local
320 if ((tail+1) % WINDOW_SIZE == head) { in produce_block_map()
338 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, in produce_block_map()
343 head = (head + 1) % WINDOW_SIZE; in produce_block_map()
365 while (head != tail) { in produce_block_map()
383 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, in produce_block_map()
388 head = (head + 1) % WINDOW_SIZE; in produce_block_map()
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java188 Runnable head = new Runnable() { public void run() { mergeBitmaps(locales); } }; in buildSequence() local
191 head = new TextCapture(loc, prev, head); in buildSequence()
194 final Runnable fhead = head; in buildSequence()