Home
last modified time | relevance | path

Searched refs:chunk (Results 226 – 250 of 267) sorted by relevance

1234567891011

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp344 auto getPrefOrder = [](const BlockLayoutChunk &chunk) { in operator <() argument
345 switch (chunk.CopyKind) { in operator <()
349 switch (chunk.CopyFlags.getBitMask()) { in operator <()
/freebsd/contrib/file/magic/Magdir/
H A Dpgp-binary-keys72 # The partial body encoding is similar to HTTP's chunk encoding. It
H A Dwindows1663 # XPRESS, with small chunk size
1674 # dwCompressionSize; Uncompressed chunk size for resources or 0 if uncompressed
1675 #>20 ulelong >0 \b, chunk size %u bytes
/freebsd/contrib/llvm-project/openmp/runtime/src/i18n/
H A Den_US.txt215 InvalidChunk "%1$s value \"%2$s\" is invalid chunk size."
216 LargeChunk "%1$s value \"%2$s\" is to large chunk size."
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c2845 size_t const chunk = MIN(remaining, ZSTD_CHUNKSIZE_MAX); in ZSTD_loadDictionaryContent() local
2846 const BYTE* const ichunk = ip + chunk; in ZSTD_loadDictionaryContent()
2865 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
2873 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzil.c1747 uint_t chunk = DIV_ROUND_UP(s, n); in zil_lwb_plan() local
1750 if (chunk <= md - waste) { in zil_lwb_plan()
1752 return (chunk); in zil_lwb_plan()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__split_buffer48 // __split_buffer allocates a contiguous chunk of memory and stores objects in the range [__begin_,…
/freebsd/sys/cam/ctl/
H A Dctl.c3831 uint32_t chunk, piece; in ctl_set_mask() local
3833 chunk = bit >> 5; in ctl_set_mask()
3836 if ((mask[chunk] & (1 << piece)) != 0) in ctl_set_mask()
3839 mask[chunk] |= (1 << piece); in ctl_set_mask()
3847 uint32_t chunk, piece; in ctl_clear_mask() local
3849 chunk = bit >> 5; in ctl_clear_mask()
3852 if ((mask[chunk] & (1 << piece)) == 0) in ctl_clear_mask()
3855 mask[chunk] &= ~(1 << piece); in ctl_clear_mask()
3863 uint32_t chunk, piece; in ctl_is_set() local
3865 chunk = bit >> 5; in ctl_is_set()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.cpp1335 CHECK_SIZE_AND_OFFSET(obstack, chunk);
H A Dsanitizer_common_interceptors.inc6228 if (obstack->chunk)
6229 COMMON_INTERCEPTOR_INITIALIZE_RANGE(obstack->chunk,
6230 sizeof(*obstack->chunk));
6256 if (obstack->chunk)
6258 obstack->chunk, obstack->next_free - (char *)obstack->chunk);
/freebsd/contrib/libevent/
H A Dwhatsnew-2.1.txt328 The largest chunk readable or writeable in a single bufferevent
452 chunk is sent.
H A DChangeLog-1.4148 …o Send CRLF after each chunk in HTTP output, for compliance with RFC2626. Patch from "propanbutan…
/freebsd/contrib/ntp/sntp/libevent/
H A Dwhatsnew-2.1.txt328 The largest chunk readable or writeable in a single bufferevent
452 chunk is sent.
H A DChangeLog-1.4148 …o Send CRLF after each chunk in HTTP output, for compliance with RFC2626. Patch from "propanbutan…
/freebsd/contrib/libdiff/test/
H A Dexpect021.diff87 sr_error(sd->sd_sc, "%s requires exactly one chunk",
/freebsd/sys/netinet/
H A Dsctputil.c4008 struct sctp_error_chunk *chunk, int so_locked) in sctp_notify_remote_error() argument
4024 if (chunk != NULL) { in sctp_notify_remote_error()
4025 chunk_len = ntohs(chunk->ch.chunk_length); in sctp_notify_remote_error()
4055 memcpy(sre->sre_data, chunk, chunk_len); in sctp_notify_remote_error()
/freebsd/contrib/expat/
H A DChanges86 #784 #787 tests: Improve test coverage with regard to parse chunk size
1056 as a single chunk) for files larger than ~1 GB (2^30 bytes)
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dwmi.c6630 struct host_memory_chunk *chunk; in ath10k_wmi_put_host_mem_chunks() local
6636 chunk = &chunks->items[i]; in ath10k_wmi_put_host_mem_chunks()
6637 chunk->ptr = __cpu_to_le32(ar->wmi.mem_chunks[i].paddr); in ath10k_wmi_put_host_mem_chunks()
6638 chunk->size = __cpu_to_le32(ar->wmi.mem_chunks[i].len); in ath10k_wmi_put_host_mem_chunks()
6639 chunk->req_id = __cpu_to_le32(ar->wmi.mem_chunks[i].req_id); in ath10k_wmi_put_host_mem_chunks()
/freebsd/contrib/libpcap/
H A Dgencode.c230 struct chunk { struct
415 struct chunk chunks[NCHUNKS];
599 struct chunk *cp; in newchunk_nolongjmp()
/freebsd/contrib/tnftp/
H A DChangeLog65 - more stringent chunk-size parsing
66 - ignore optional trailing ';chunk-ext' stuff, instead of barfing
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp424 DeclaratorChunk &chunk = D.getTypeObject(i); in CheckExtraCXXDefaultArguments() local
425 if (chunk.Kind == DeclaratorChunk::Function) { in CheckExtraCXXDefaultArguments()
433 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e; in CheckExtraCXXDefaultArguments()
435 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param); in CheckExtraCXXDefaultArguments()
438 std::move(chunk.Fun.Params[argIdx].DefaultArgTokens); in CheckExtraCXXDefaultArguments()
453 } else if (chunk.Kind != DeclaratorChunk::Paren) { in CheckExtraCXXDefaultArguments()
/freebsd/contrib/llvm-project/
H A DFREEBSD-Xlist905 llvm/utils/chunk-print-before-all.py
/freebsd/contrib/dialog/
H A DCHANGES1086 + undo removal of redundant chunk from checklist.c in 2007/02/27,
1200 + remove a redundant chunk from checklist.c which reported status a
1272 and incidentally remove the last chunk of code preventing relicense.
/freebsd/crypto/heimdal/lib/roken/
H A DChangeLog292 * dumpdata.c: Add rk_dumpdata() that write a chunk of data into a
/freebsd/contrib/processor-trace/libipt/include/
H A Dintel-pt.h.in1755 * \@size is getting too big. We support reading at least 4Kbyte in one chunk

1234567891011