Searched refs:size_t (Results 1 - 25 of 1928) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/src/util/
H A Dcompress.h29 size_t
30 util_compress_max_compressed_len(size_t in_data_size);
33 util_compress_inflate(const uint8_t *in_data, size_t in_data_size,
34 uint8_t *out_data, size_t out_data_size);
36 size_t
37 util_compress_deflate(const uint8_t *in_data, size_t in_data_size,
38 uint8_t *out_data, size_t out_buff_size);
H A Dos_memory.h44 os_malloc(size_t size);
47 os_calloc(size_t count, size_t size);
53 os_realloc(void *ptr, size_t old_size, size_t new_size);
56 os_malloc_aligned(size_t size, size_t alignment);
62 os_realloc_aligned(void *ptr, size_t oldsize, size_t newsize, size_t alignemn
[all...]
H A Du_process.h36 size_t
37 util_get_process_exec_path(char* process_path, size_t len);
H A Du_printf.h31 size_t util_printf_next_spec_pos(const std::string &s, size_t pos);
37 size_t util_printf_next_spec_pos(const char *str, size_t pos);
44 size_t u_printf_length(const char *fmt, va_list untouched_args);
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dos_memory.h49 os_malloc(size_t size);
52 os_calloc(size_t count, size_t size);
58 os_realloc(void *ptr, size_t old_size, size_t new_size);
61 os_malloc_aligned(size_t size, size_t alignment);
/xsrc/external/mit/glu/dist/src/libnurbs/interface/
H A Dmystdlib.h40 typedef unsigned int size_t; typedef in typeref:typename:unsigned int
42 extern "C" void * malloc( size_t );
51 typedef unsigned int size_t; typedef in typeref:typename:unsigned int
53 extern "C" void * malloc( size_t );
/xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/
H A Dmystdlib.h40 typedef unsigned int size_t; typedef in typeref:typename:unsigned int
42 extern "C" void * malloc( size_t );
51 typedef unsigned int size_t; typedef in typeref:typename:unsigned int
53 extern "C" void * malloc( size_t );
/xsrc/external/mit/xf86-video-intel/dist/libobj/
H A Dalloca.c1 void *alloca(size_t sz)
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/
H A Dtileset.h39 INLINE void set(size_t idx)
42 size_t& word = _get_word(idx);
43 word |= (size_t(1) << (idx & BITS_OFFSET));
46 INLINE bool get(size_t idx)
52 size_t word = _get_word(idx);
53 return 0 != (word & (size_t(1) << (idx & BITS_OFFSET)));
60 size_t num_words = (m_maxSet + BITS_OFFSET) / BITS_PER_WORD;
61 memset(m_bits, 0, sizeof(size_t) * num_words);
67 static const size_t BITS_PER_WORD = sizeof(size_t) *
[all...]
/xsrc/external/mit/xlsclients/dist/
H A Dstrnlen.h31 extern size_t strnlen(const char *s, size_t maxlen);
H A Dstrnlen.c34 size_t strnlen(const char *s, size_t maxlen) {
36 return (size_t)(p ? (p - s) : maxlen);
/xsrc/external/mit/xwininfo/dist/
H A Dstrnlen.h31 extern size_t strnlen(const char *s, size_t maxlen);
H A Dstrnlen.c34 size_t strnlen(const char *s, size_t maxlen) {
36 return (size_t)(p ? (p - s) : maxlen);
/xsrc/external/mit/brotli/dist/c/enc/
H A Dbackward_references_hq.h27 size_t num_bytes,
28 size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask,
30 Hasher* hasher, int* dist_cache, size_t* last_insert_len,
31 Command* commands, size_t* num_commands, size_t* num_literals);
34 size_t num_bytes,
35 size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask,
37 Hasher* hasher, int* dist_cache, size_t* last_insert_le
[all...]
H A Dliteral_cost.h24 size_t pos, size_t len, size_t mask, const uint8_t* data, float* cost);
H A Dbackward_references.h29 BROTLI_INTERNAL void BrotliCreateBackwardReferences(size_t num_bytes,
30 size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask,
32 Hasher* hasher, int* dist_cache, size_t* last_insert_len,
33 Command* commands, size_t* num_commands, size_t* num_literals);
H A Dbrotli_bit_stream.h34 BROTLI_INTERNAL void BrotliStoreHuffmanTree(const uint8_t* depths, size_t num,
35 HuffmanTree* tree, size_t* storage_ix, uint8_t* storage);
38 MemoryManager* m, const uint32_t* histogram, const size_t histogram_total,
39 const size_t max_bits, uint8_t* depth, uint16_t* bits, size_t* storage_ix,
45 const uint8_t* input, size_t start_pos, size_t length, size_t mask,
48 const Command* commands, size_t n_commands, const MetaBlockSplit* mb,
49 size_t* storage_i
[all...]
H A Dprefix.h24 static BROTLI_INLINE void PrefixEncodeCopyDistance(size_t distance_code,
25 size_t num_direct_codes,
26 size_t postfix_bits,
34 size_t dist = ((size_t)1 << (postfix_bits + 2u)) +
36 size_t bucket = Log2FloorNonZero(dist) - 1;
37 size_t postfix_mask = (1u << postfix_bits) - 1;
38 size_t postfix = dist & postfix_mask;
39 size_t prefix = (dist >> bucket) & 1;
40 size_t offse
[all...]
H A Dcompress_fragment_two_pass.h24 static const size_t kCompressFragmentTwoPassBlockSize = 1 << 17;
41 size_t input_size,
46 size_t table_size,
47 size_t* storage_ix,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/os/
H A Dos_process.h37 os_get_process_name(char *str, size_t size);
41 os_get_command_line(char *cmdline, size_t size);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/midgard/
H A Ddisassemble.h2 void disassemble_midgard(uint8_t *code, size_t size);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/os/
H A Dos_process.h37 os_get_process_name(char *str, size_t size);
41 os_get_command_line(char *cmdline, size_t size);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dstreaming-load-memcpy.h37 _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/rtasm/
H A Drtasm_execmem.h39 rtasm_exec_malloc( size_t size );
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rtasm/
H A Drtasm_execmem.h39 rtasm_exec_malloc( size_t size );

Completed in 16 milliseconds

1234567891011>>