Searched refs:foundAt (Results 1 - 3 of 3) sorted by relevance

/haiku/src/apps/haikudepot/util/
H A DValidationUtils.cpp105 bool foundAt = false; local
108 if (c[i] == 0x40 && !foundAt) {
111 foundAt = true;
119 return foundAt;
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp1101 off_t foundAt = B_ENTRY_NOT_FOUND; local
1149 foundAt = B_ENTRY_NOT_FOUND;
1166 foundAt = position + i;
1178 if (foundAt >= 0 && matchLastOffset == 0)
1186 if (foundAt >= 0 && matchLastOffset != 0)
1187 foundAt = B_ENTRY_NOT_FOUND;
1193 progress.AddInt64("position", foundAt >= 0 ? foundAt : savedOffset);
1201 if (foundAt < 0 && *stop)
1204 return foundAt;
[all...]
H A DProbeView.cpp985 off_t foundAt = fEditor.Find(startAt, data, dataSize, caseInsensitive, local
987 if (foundAt >= B_OK) {
988 fEditor.SetViewOffset(foundAt);
992 message.AddInt64("start", foundAt - fEditor.ViewOffset());
993 message.AddInt64("end", foundAt + dataSize - 1 - fEditor.ViewOffset());
995 } else if (foundAt == B_ENTRY_NOT_FOUND) {

Completed in 103 milliseconds