Searched refs:size_t (Results 76 - 100 of 19258) sorted by relevance

1234567891011>>

/external/jemalloc/include/jemalloc/
H A Djemalloc_protos_jet.h10 JEMALLOC_EXPORT void *jet_malloc(size_t size) JEMALLOC_ATTR(malloc);
11 JEMALLOC_EXPORT void *jet_calloc(size_t num, size_t size)
13 JEMALLOC_EXPORT int jet_posix_memalign(void **memptr, size_t alignment,
14 size_t size) JEMALLOC_ATTR(nonnull(1));
15 JEMALLOC_EXPORT void *jet_aligned_alloc(size_t alignment, size_t size)
17 JEMALLOC_EXPORT void *jet_realloc(void *ptr, size_t size);
20 JEMALLOC_EXPORT void *jet_mallocx(size_t size, int flags);
21 JEMALLOC_EXPORT void *jet_rallocx(void *ptr, size_t siz
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPageAllocator.h42 static const size_t kPageAllocationGranularityShift = 16; // 64KB
44 static const size_t kPageAllocationGranularityShift = 12; // 4KB
46 static const size_t kPageAllocationGranularity = 1 << kPageAllocationGranularityShift;
47 static const size_t kPageAllocationGranularityOffsetMask = kPageAllocationGranularity - 1;
48 static const size_t kPageAllocationGranularityBaseMask = ~kPageAllocationGranularityOffsetMask;
52 static const size_t kSystemPageSize = 4096;
53 static const size_t kSystemPageOffsetMask = kSystemPageSize - 1;
54 static const size_t kSystemPageBaseMask = ~kSystemPageOffsetMask;
66 WTF_EXPORT void* allocPages(void* addr, size_t len, size_t alig
[all...]
/external/clang/test/SemaCXX/
H A Dnew-null.cpp4 typedef __SIZE_TYPE__ size_t; typedef
8 void *operator new(size_t n) {
11 void *operator new[](size_t n) noexcept {
18 static size_t x;
19 void *operator new(size_t n) throw() {
22 void *operator new[](size_t n) {
33 void *operator new(size_t n) {
42 void *operator new[](size_t n) {
49 void *operator new(size_t n) noexcept(B) {
58 void *operator new(size_t
[all...]
H A Dmicrosoft-new-delete.cpp6 void *operator new(size_t size, arbitrary_t);
14 void *operator new[](size_t, noncopyable);
15 void *operator new(size_t, const noncopyable&);
19 void *operator new[](size_t, int &);
20 void *operator new(size_t, const int &);
25 void *operator new[](size_t, base &);
26 void *operator new(size_t, derived &);
31 void *operator new[](size_t, explicit_ctor_tag, explicit_ctor);
32 void *operator new(size_t, explicit_ctor_tag, int);
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dwpa_ie.h16 size_t wpa_ie_len;
18 size_t rsn_ie_len;
21 size_t gtk_len;
23 size_t mac_addr_len;
26 size_t smk_len;
28 size_t nonce_len;
30 size_t lifetime_len;
32 size_t error_len;
36 size_t igtk_len;
39 size_t mdie_le
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dwpa_ie.h16 size_t wpa_ie_len;
18 size_t rsn_ie_len;
21 size_t gtk_len;
23 size_t mac_addr_len;
26 size_t smk_len;
28 size_t nonce_len;
30 size_t lifetime_len;
32 size_t error_len;
36 size_t igtk_len;
39 size_t mdie_le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dwpa_ie.h16 size_t wpa_ie_len;
18 size_t rsn_ie_len;
21 size_t gtk_len;
23 size_t mac_addr_len;
26 size_t smk_len;
28 size_t nonce_len;
30 size_t lifetime_len;
32 size_t error_len;
36 size_t igtk_len;
39 size_t mdie_le
[all...]
/external/openfst/src/include/fst/extensions/ngram/
H A Dbitmap-index.h43 static size_t StorageSize(size_t size) {
49 bool Get(size_t index) const {
54 static void Set(uint64* bits, size_t index) {
58 static void Clear(uint64* bits, size_t index) {
62 size_t Bits() const {
66 size_t ArraySize() const {
71 size_t GetOnesCount() const {
77 size_t Rank1(size_t en
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbuf.h69 size_t length; /* current number of bytes */
71 size_t max; /* size of buffer */
83 OPENSSL_EXPORT size_t BUF_MEM_grow(BUF_MEM *buf, size_t len);
87 OPENSSL_EXPORT size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
95 OPENSSL_EXPORT size_t BUF_strnlen(const char *str, size_t max_len);
99 OPENSSL_EXPORT char *BUF_strndup(const char *str, size_t size);
102 OPENSSL_EXPORT void *BUF_memdup(const void *data, size_t siz
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dchunk.h16 ((size_t)((uintptr_t)(a) & chunksize_mask))
30 extern size_t opt_lg_chunk;
40 extern size_t chunksize;
41 extern size_t chunksize_mask; /* (chunksize - 1). */
42 extern size_t chunk_npages;
43 extern size_t map_bias; /* Number of arena chunk header pages. */
44 extern size_t arena_maxclass; /* Max size class for arenas. */
46 void *chunk_alloc_base(size_t size);
48 chunk_dalloc_t *chunk_dalloc, unsigned arena_ind, size_t size,
49 size_t alignmen
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256.h14 int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
15 const u8 *addr[], const size_t *len, u8 *mac);
16 int hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
17 size_t data_len, u8 *mac);
18 void sha256_prf(const u8 *key, size_t key_len, const char *label,
19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len);
20 void sha256_prf_bits(const u8 *key, size_t key_len, const char *label,
21 const u8 *data, size_t data_le
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dsha256.h14 int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
15 const u8 *addr[], const size_t *len, u8 *mac);
16 int hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
17 size_t data_len, u8 *mac);
18 void sha256_prf(const u8 *key, size_t key_len, const char *label,
19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len);
20 void sha256_prf_bits(const u8 *key, size_t key_len, const char *label,
21 const u8 *data, size_t data_le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256.h14 int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
15 const u8 *addr[], const size_t *len, u8 *mac);
16 int hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
17 size_t data_len, u8 *mac);
18 void sha256_prf(const u8 *key, size_t key_len, const char *label,
19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len);
20 void sha256_prf_bits(const u8 *key, size_t key_len, const char *label,
21 const u8 *data, size_t data_le
[all...]
/external/zopfli/src/zopfli/
H A Dlz77.h48 size_t size;
71 size_t blockstart;
72 size_t blockend;
93 size_t pos, size_t size, size_t limit,
99 void ZopfliVerifyLenDist(const unsigned char* data, size_t datasize, size_t pos,
115 size_t start, size_t en
[all...]
H A Dcache.h46 void ZopfliInitCache(size_t blocksize, ZopfliLongestMatchCache* lmc);
53 size_t pos, size_t length,
58 size_t pos, size_t length,
62 size_t pos, size_t length);
H A Ddeflate.h58 const unsigned char* in, size_t insize,
59 unsigned char* bp, unsigned char** out, size_t* outsize);
67 const unsigned char* in, size_t instart, size_t inend,
69 size_t* outsize);
80 size_t lstart, size_t lend, int btype);
/external/chromium_org/net/spdy/
H A Dspdy_prefixed_buffer_reader.h17 SpdyPrefixedBufferReader(const char* prefix, size_t prefix_length,
18 const char* suffix, size_t suffix_length);
21 size_t Available();
25 bool ReadN(size_t count, char* out);
29 bool ReadN(size_t count, SpdyPinnableBufferPiece* out);
35 size_t prefix_length_;
36 size_t suffix_length_;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcommon.h39 #include <stddef.h> // for size_t
65 static const size_t kPageShift = 15;
66 static const size_t kNumClasses = 78;
68 static const size_t kPageShift = 13;
69 static const size_t kNumClasses = 86;
71 static const size_t kMaxThreadCacheSize = 4 << 20;
73 static const size_t kPageSize = 1 << kPageShift;
74 static const size_t kMaxSize = 256 * 1024;
75 static const size_t kAlignment = 8;
76 static const size_t kLargeSizeClas
[all...]
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_info_interface.h24 virtual size_t GetNumberOfProfiles() const = 0;
26 virtual size_t GetIndexOfProfileWithPath(
29 virtual base::Time GetProfileActiveTimeAtIndex(size_t index) const = 0;
31 virtual base::string16 GetNameOfProfileAtIndex(size_t index) const = 0;
34 size_t index) const = 0;
36 virtual base::FilePath GetPathOfProfileAtIndex(size_t index) const = 0;
38 virtual base::string16 GetUserNameOfProfileAtIndex(size_t index) const = 0;
41 size_t index) const = 0;
44 size_t index) const = 0;
49 size_t inde
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_inflater.h29 WebSocketInflater(size_t input_queue_capacity, size_t output_buffer_capacity);
43 bool AddBytes(const char* data, size_t size);
59 scoped_refptr<IOBufferWithSize> GetOutput(size_t size);
62 size_t CurrentOutputSize() const { return output_buffer_.Size(); }
64 static const size_t kDefaultBufferCapacity = 512;
65 static const size_t kDefaultInputIOBufferCapacity = 512;
71 explicit OutputBuffer(size_t capacity);
74 size_t Size() const;
78 std::pair<char*, size_t> GetTai
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DReverbConvolverStage.h51 ReverbConvolverStage(const float* impulseResponse, size_t responseLength, size_t reverbTotalLatency, size_t stageOffset, size_t stageLength, size_t fftSize, size_t renderPhase, size_t renderSliceSize, ReverbAccumulationBuffer*, bool directMode = false);
54 void process(const float* source, size_t framesToProcess);
56 void processInBackground(ReverbConvolver* convolver, size_t framesToProcess);
73 size_t m_preDelayLengt
[all...]
H A DReverbInputBuffer.h40 ReverbInputBuffer(size_t length);
45 void write(const float* sourceP, size_t numberOfFrames);
48 size_t writeIndex() const { return m_writeIndex; }
54 float* directReadFrom(int* readIndex, size_t numberOfFrames);
60 size_t m_writeIndex;
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relro.h28 size_t start() const { return start_; }
29 size_t end() const { return start_ + size_; }
30 size_t size() const { return size_; }
40 bool Allocate(size_t relro_size, const char* library_name, Error* error);
47 bool CopyFrom(size_t relro_start, size_t relro_size, Error* error);
55 size_t load_address,
56 size_t relro_start,
57 size_t relro_size,
70 bool InitFrom(size_t relro_star
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_memory_uma_stats.h24 size_t bytes_allocated_current;
27 size_t bytes_allocated_max;
30 size_t bytes_limit;
33 size_t client_count;
36 size_t context_group_count;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtputils.h35 const size_t kMinRtpPacketLen = 12;
36 const size_t kMaxRtpPacketLen = 2048;
37 const size_t kMinRtcpPacketLen = 4;
56 bool GetRtpVersion(const void* data, size_t len, int* version);
57 bool GetRtpPayloadType(const void* data, size_t len, int* value);
58 bool GetRtpSeqNum(const void* data, size_t len, int* value);
59 bool GetRtpTimestamp(const void* data, size_t len, uint32* value);
60 bool GetRtpSsrc(const void* data, size_t len, uint32* value);
61 bool GetRtpHeaderLen(const void* data, size_t len, size_t* valu
[all...]

Completed in 420 milliseconds

1234567891011>>