Home
last modified time | relevance | path

Searched refs:iend (Results 1 – 25 of 28) sorted by relevance

12

/freebsd-12-stable/contrib/gcclibs/libgomp/
Dloop.c67 long *istart, long *iend) in gomp_loop_static_start() argument
76 return !gomp_iter_static_next (istart, iend); in gomp_loop_static_start()
81 long *istart, long *iend) in gomp_loop_dynamic_start() argument
92 ret = gomp_iter_dynamic_next (istart, iend); in gomp_loop_dynamic_start()
94 ret = gomp_iter_dynamic_next_locked (istart, iend); in gomp_loop_dynamic_start()
103 long *istart, long *iend) in gomp_loop_guided_start() argument
114 ret = gomp_iter_guided_next (istart, iend); in gomp_loop_guided_start()
116 ret = gomp_iter_guided_next_locked (istart, iend); in gomp_loop_guided_start()
125 long *istart, long *iend) in GOMP_loop_runtime_start() argument
131 istart, iend); in GOMP_loop_runtime_start()
[all …]
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_double_fast.c26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable() local
33 for (; ip + fastHashFillStep - 1 <= iend; ip += fastHashFillStep) { in ZSTD_fillDoubleHashTable()
64 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_doubleFast_generic() local
65 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
91 mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
97 mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
106 mLength = ZSTD_count(ip+9, matchL3+8, iend) + 8; in ZSTD_compressBlock_doubleFast_generic()
111 mLength = ZSTD_count(ip+4, match+4, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
142 size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4; in ZSTD_compressBlock_doubleFast_generic()
157 return iend - anchor; in ZSTD_compressBlock_doubleFast_generic()
[all …]
Dzstd_fast.c24 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable() local
30 for (; ip + fastHashFillStep - 1 <= iend; ip += fastHashFillStep) { in ZSTD_fillHashTable()
54 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_fast_generic() local
55 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic()
76 mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4; in ZSTD_compressBlock_fast_generic()
86 mLength = ZSTD_count(ip+4, match+4, iend) + 4; in ZSTD_compressBlock_fast_generic()
107 size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4; in ZSTD_compressBlock_fast_generic()
121 return iend - anchor; in ZSTD_compressBlock_fast_generic()
163 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_fast_extDict_generic() local
164 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_fast_extDict_generic()
[all …]
Dzstd_lazy.c21 const BYTE* ip, const BYTE* iend, in ZSTD_updateDUBT() argument
38 assert(ip + 8 <= iend); /* condition for ZSTD_hashPtr */ in ZSTD_updateDUBT()
39 (void)iend; in ZSTD_updateDUBT()
75 const BYTE* const iend = (current>=dictLimit) ? inputEnd : dictBase + dictLimit; in ZSTD_insertDUBT1() local
88 assert(ip < iend); /* condition for ZSTD_count */ in ZSTD_insertDUBT1()
102 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertDUBT1()
105 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertDUBT1()
113 if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ in ZSTD_insertDUBT1()
143 const BYTE* const ip, const BYTE* const iend, in ZSTD_DUBT_findBestMatch() argument
170 assert(ip <= iend-8); /* required for h calculation */ in ZSTD_DUBT_findBestMatch()
[all …]
Dzstd_ldm.c222 const BYTE* const iend = (const BYTE*)end; in ZSTD_ldm_fillFastTables() local
227 ZSTD_fillHashTable(ms, cParams, iend); in ZSTD_ldm_fillFastTables()
228 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_ldm_fillFastTables()
232 ZSTD_fillDoubleHashTable(ms, cParams, iend); in ZSTD_ldm_fillFastTables()
233 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_ldm_fillFastTables()
258 const BYTE* iend, const BYTE* base, in ZSTD_ldm_fillLdmHashTable() argument
264 while (cur < iend) { in ZSTD_ldm_fillLdmHashTable()
313 BYTE const* const iend = istart + srcSize; in ZSTD_ldm_generateSequences_internal() local
314 BYTE const* const ilimit = iend - MAX(minMatchLength, HASH_READ_SIZE); in ZSTD_ldm_generateSequences_internal()
363 cur->offset < dictLimit ? dictEnd : iend; in ZSTD_ldm_generateSequences_internal()
[all …]
Dzstd_opt.c273 const BYTE* const ip, const BYTE* const iend, in ZSTD_insertBt1() argument
308 assert(ip <= iend-8); /* required for h calculation */ in ZSTD_insertBt1()
340 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertBt1()
343 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertBt1()
354 if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ in ZSTD_insertBt1()
383 const BYTE* const ip, const BYTE* const iend, in ZSTD_updateTree_internal() argument
393 idx += ZSTD_insertBt1(ms, cParams, base+idx, iend, mls, extDict); in ZSTD_updateTree_internal()
399 const BYTE* ip, const BYTE* iend) in ZSTD_updateTree() argument
401 ZSTD_updateTree_internal(ms, cParams, ip, iend, cParams->searchLength, 0 /*extDict*/); in ZSTD_updateTree()
676 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic() local
[all …]
Dfse_compress.c332 const BYTE* const iend = ip+sourceSize; in FSE_count_parallel_wksp() local
352 while (ip < iend-15) { in FSE_count_parallel_wksp()
378 while (ip<iend) Counting1[*ip++]++; in FSE_count_parallel_wksp()
707 const BYTE* const iend = istart + srcSize; in FSE_compress_usingCTable_generic() local
708 const BYTE* ip=iend; in FSE_compress_usingCTable_generic()
Dzstd_opt.h22 const BYTE* ip, const BYTE* iend); /* used in ZSTD_loadDictionaryContent() */
Dzstd_compress.c2196 const BYTE* const iend = ip + srcSize; in ZSTD_loadDictionaryContent() local
2200 ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
2207 ZSTD_fillHashTable(ms, cParams, iend); in ZSTD_loadDictionaryContent()
2210 ZSTD_fillDoubleHashTable(ms, cParams, iend); in ZSTD_loadDictionaryContent()
2217 ZSTD_insertAndFindFirstIndex(ms, cParams, iend-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
2224 ZSTD_updateTree(ms, cParams, iend-HASH_READ_SIZE, iend); in ZSTD_loadDictionaryContent()
2231 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
3041 const char* const iend = istart + input->size; in ZSTD_compressStream_generic() local
3066 && ((size_t)(oend-op) >= ZSTD_compressBound(iend-ip)) /* enough dstCapacity */ in ZSTD_compressStream_generic()
3070 op, oend-op, ip, iend-ip); in ZSTD_compressStream_generic()
[all …]
/freebsd-12-stable/sys/contrib/zstd/lib/common/
Dentropy_common.c65 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
91 if (ip < iend-5) { in FSE_readNCount()
107 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSE_readNCount()
135 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSE_readNCount()
139 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
140 ip = iend - 4; in FSE_readNCount()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/common/lz4/
Dlz4.c494 const BYTE *const iend = ip + isize; in LZ4_compressCtx() local
496 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compressCtx()
497 #define matchlimit (iend - LASTLITERALS) in LZ4_compressCtx()
643 int lastRun = iend - anchor; in LZ4_compressCtx()
656 (void) memcpy(op, anchor, iend - anchor); in LZ4_compressCtx()
657 op += iend - anchor; in LZ4_compressCtx()
689 const BYTE *const iend = ip + isize; in LZ4_compress64kCtx() local
691 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compress64kCtx()
692 #define matchlimit (iend - LASTLITERALS) in LZ4_compress64kCtx()
836 int lastRun = iend - anchor; in LZ4_compress64kCtx()
[all …]
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
Dkmp_gsupport.cpp2153 long *iend, uintptr_t *reductions, void **mem) { in KMP_EXPAND_NAME()
2169 start, end, incr, istart, iend); in KMP_EXPAND_NAME()
2173 start, end, incr, istart, iend); in KMP_EXPAND_NAME()
2176 start, end, incr, chunk_size, istart, iend); in KMP_EXPAND_NAME()
2180 start, end, incr, chunk_size, istart, iend); in KMP_EXPAND_NAME()
2184 start, end, incr, chunk_size, istart, iend); in KMP_EXPAND_NAME()
2188 start, end, incr, chunk_size, istart, iend); in KMP_EXPAND_NAME()
2192 start, end, incr, chunk_size, istart, iend); in KMP_EXPAND_NAME()
2195 start, end, incr, istart, iend); in KMP_EXPAND_NAME()
2205 unsigned long long *istart, unsigned long long *iend, uintptr_t *reductions, in KMP_EXPAND_NAME()
[all …]
/freebsd-12-stable/contrib/byacc/
Dlr0.c165 Value_t *iend; in get_state() local
175 iend = kernel_end[symbol]; in get_state()
176 n = (int)(iend - isp1); in get_state()
192 while (found && isp1 < iend) in get_state()
290 Value_t *iend; in new_state() local
300 iend = kernel_end[symbol]; in new_state()
301 n = (unsigned)(iend - isp1); in new_state()
309 while (isp1 < iend) in new_state()
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
Dzstd_v01.c486 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
515 if (ip < iend-5) in FSE_readNCount()
536 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
572 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
579 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
580 ip = iend - 4; in FSE_readNCount()
1572 const BYTE* const iend = istart + srcSize; in ZSTDv01_decodeSeqHeaders() local
1602 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTDv01_decodeSeqHeaders()
1620 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders()
1631 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTDv01_decodeSeqHeaders()
[all …]
Dzstd_v05.c1283 const BYTE* const iend = istart + hbSize; in FSEv05_readNCount() local
1309 if (ip < iend-5) { in FSEv05_readNCount()
1325 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv05_readNCount()
1355 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv05_readNCount()
1359 bitCount -= (int)(8 * (iend - 4 - ip)); in FSEv05_readNCount()
1360 ip = iend - 4; in FSEv05_readNCount()
2997 const BYTE* const iend = istart + srcSize; in ZSTDv05_decodeSeqHeaders() local
3010 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3014 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3019 if (ip+3 > iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
[all …]
Dzstd_v06.c1267 const BYTE* const iend = istart + hbSize; in FSEv06_readNCount() local
1293 if (ip < iend-5) { in FSEv06_readNCount()
1309 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv06_readNCount()
1338 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv06_readNCount()
1342 bitCount -= (int)(8 * (iend - 4 - ip)); in FSEv06_readNCount()
1343 ip = iend - 4; in FSEv06_readNCount()
3221 const BYTE* const iend = istart + srcSize; in ZSTDv06_decodeSeqHeaders() local
3232 if (ip+2 > iend) return ERROR(srcSize_wrong); in ZSTDv06_decodeSeqHeaders()
3235 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv06_decodeSeqHeaders()
3249 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTDv06_decodeSeqHeaders()
[all …]
Dzstd_v03.c1172 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
1201 if (ip < iend-5) in FSE_readNCount()
1222 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1258 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1265 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
1266 ip = iend - 4; in FSE_readNCount()
2551 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
2581 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTD_decodeSeqHeaders()
2599 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2610 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTD_decodeSeqHeaders()
[all …]
Dzstd_v04.c1211 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
1240 if (ip < iend-5) in FSE_readNCount()
1261 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1297 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1304 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
1305 ip = iend - 4; in FSE_readNCount()
2741 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
2771 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTD_decodeSeqHeaders()
2789 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2800 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTD_decodeSeqHeaders()
[all …]
Dzstd_v02.c1171 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
1200 if (ip < iend-5) in FSE_readNCount()
1221 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1257 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1264 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
1265 ip = iend - 4; in FSE_readNCount()
2910 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
2940 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTD_decodeSeqHeaders()
2958 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2969 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTD_decodeSeqHeaders()
[all …]
Dzstd_v07.c1211 const BYTE* const iend = istart + hbSize; in FSEv07_readNCount() local
1237 if (ip < iend-5) { in FSEv07_readNCount()
1253 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv07_readNCount()
1282 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv07_readNCount()
1286 bitCount -= (int)(8 * (iend - 4 - ip)); in FSEv07_readNCount()
1287 ip = iend - 4; in FSEv07_readNCount()
3447 const BYTE* const iend = istart + srcSize; in ZSTDv07_decodeSeqHeaders() local
3458 if (ip+2 > iend) return ERROR(srcSize_wrong); in ZSTDv07_decodeSeqHeaders()
3461 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv07_decodeSeqHeaders()
3475 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTDv07_decodeSeqHeaders()
[all …]
/freebsd-12-stable/sys/contrib/zstd/tests/
Dfullbench.c262 const BYTE* const iend = ip + g_cSize; in local_ZSTD_decompressContinue() local
268 while (ip < iend) { in local_ZSTD_decompressContinue()
387 const BYTE* iend; in benchMem() local
399 iend = ip + ZSTD_blockHeaderSize + cBlockSize; /* End of first block */ in benchMem()
402 ip += ZSTD_decodeLiteralsBlock(g_zdc, ip, iend-ip); /* skip literal segment */ in benchMem()
403 g_cSize = iend-ip; in benchMem()
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/lz4/
Dlz4.c489 const BYTE* const iend = ip + inputSize; in LZ4_compress_generic() local
490 const BYTE* const mflimit = iend - MFLIMIT; in LZ4_compress_generic()
491 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic()
648 { size_t const lastRun = (size_t)(iend - anchor); in LZ4_compress_generic()
743 const BYTE* const iend = ip + *srcSizePtr; in LZ4_compress_destSize_generic() local
744 const BYTE* const mflimit = iend - MFLIMIT; in LZ4_compress_destSize_generic()
745 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_destSize_generic()
861 { size_t lastRunSize = (size_t)(iend - anchor); in LZ4_compress_destSize_generic()
1116 const BYTE* const iend = ip + inputSize; in LZ4_decompress_generic() local
1150 } while ( likely(endOnInput ? ip<iend-RUN_MASK : 1) & (s==255) ); in LZ4_decompress_generic()
[all …]
/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
Dzstd_decompress.c941 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
953 if (ip+2 > iend) return ERROR(srcSize_wrong); in ZSTD_decodeSeqHeaders()
956 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTD_decodeSeqHeaders()
964 if (ip+4 > iend) return ERROR(srcSize_wrong); /* minimum possible size */ in ZSTD_decodeSeqHeaders()
973 ip, iend-ip, in ZSTD_decodeSeqHeaders()
982 ip, iend-ip, in ZSTD_decodeSeqHeaders()
991 ip, iend-ip, in ZSTD_decodeSeqHeaders()
1351 const BYTE* const iend = ip + seqSize; in ZSTD_decompressSequences_body() local
1367 CHECK_E(BIT_initDStream(&seqState.DStream, ip, iend-ip), corruption_detected); in ZSTD_decompressSequences_body()
1495 const BYTE* const iend = ip + seqSize; in ZSTD_decompressSequencesLong_body() local
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp254 for(SDNodeIterator i = SDNodeIterator::begin(N), iend = SDNodeIterator::end(N); in setSubgraphColorHelper() local
255 i != iend; in setSubgraphColorHelper()
/freebsd-12-stable/usr.sbin/cdcontrol/
Dcdcontrol.c477 int rc, start, end = 0, istart = 1, iend = 1; in play() local
739 if (4 != sscanf (arg, "%d.%d%d.%d", &start, &istart, &end, &iend) && in play()
741 3 != sscanf (arg, "%d%d.%d", &start, &end, &iend) && in play()
749 return (play_track (start, istart, end, iend)); in play()
1054 play_track(int tstart, int istart, int tend, int iend) in play_track() argument
1061 t.end_index = iend; in play_track()

12