Home
last modified time | relevance | path

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

/external/protobuf/conformance/
Dconformance_objc.m200 BOOL notDone = YES;
201 while (notDone) {
203 notDone = DoTestIo(input, output);
/external/zstd/lib/legacy/
Dzstd_v04.c3434 U32 notDone = 1; in ZBUFF_decompressContinue() local
3437 while (notDone) in ZBUFF_decompressContinue()
3512 notDone = 0; in ZBUFF_decompressContinue()
3528 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFF_decompressContinue()
3541 … if (loadedSize < toLoad) { notDone = 0; break; } /* not enough input, wait for more */ in ZBUFF_decompressContinue()
3569 notDone = 0; in ZBUFF_decompressContinue()
Dzstd_v05.c3899 U32 notDone = 1; in ZBUFFv05_decompressContinue() local
3901 while (notDone) { in ZBUFFv05_decompressContinue()
3974 notDone = 0; in ZBUFFv05_decompressContinue()
3989 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFFv05_decompressContinue()
4002 … if (loadedSize < toLoad) { notDone = 0; break; } /* not enough input, wait for more */ in ZBUFFv05_decompressContinue()
4029 notDone = 0; in ZBUFFv05_decompressContinue()
Dzstd_v06.c4028 U32 notDone = 1; in ZBUFFv06_decompressContinue() local
4030 while (notDone) { in ZBUFFv06_decompressContinue()
4083 notDone = 0; in ZBUFFv06_decompressContinue()
4097 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFFv06_decompressContinue()
4109 … if (loadedSize < toLoad) { notDone = 0; break; } /* not enough input, wait for more */ in ZBUFFv06_decompressContinue()
4136 notDone = 0; in ZBUFFv06_decompressContinue()
Dzstd_v07.c4410 U32 notDone = 1; in ZBUFFv07_decompressContinue() local
4412 while (notDone) { in ZBUFFv07_decompressContinue()
4468 notDone = 0; in ZBUFFv07_decompressContinue()
4483 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFFv07_decompressContinue()
4495 … if (loadedSize < toLoad) { notDone = 0; break; } /* not enough input, wait for more */ in ZBUFFv07_decompressContinue()
4524 notDone = 0; in ZBUFFv07_decompressContinue()
/external/lz4/lib/
Dlz4frame.c814 typedef enum { notDone, fromTmpBuffer, fromSrcBuffer } LZ4F_lastBlockStatus; enumerator
834 LZ4F_lastBlockStatus lastBlockCompressed = notDone; in LZ4F_compressUpdate()