HomeSort by relevance Sort by last modified time
    Searched refs:size (Results 26 - 50 of 49887) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
size.s 5 .size foo, . - bar + 42
10 // CHECK-NEXT: Size: 42
  /external/mesa3d/src/mapi/
u_execmem.h 5 u_execmem_alloc(unsigned int size);
  /external/python/cpython2/RISCOS/Python/
getcwd_riscos.c 1 char *getcwd(char *buf, int size)
  /external/tcpdump/
addrtostr.h 41 extern const char *addrtostr(const void *src, char *dst, size_t size);
42 extern const char *addrtostr6(const void *src, char *dst, size_t size);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
bad-size.d 1 #name: Check bad size directive
2 #error-output: bad-size.err
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DataDescriptorType.java 48 public int size; field in class:DataDescriptorType
53 * @param size the number of bytes the data descriptor spans
55 DataDescriptorType(int size) {
56 this.size = size;
  /bionic/libc/include/
alloca.h 34 #define alloca(size) __builtin_alloca(size)
  /external/pdfium/testing/libfuzzer/
pdf_codec_bmp_fuzzer.cc 7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_BMP);
pdf_codec_gif_fuzzer.cc 7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_GIF);
pdf_codec_jpeg_fuzzer.cc 7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_JPG);
pdf_codec_png_fuzzer.cc 7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_PNG);
pdf_codec_tiff_fuzzer.cc 7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_TIF);
  /external/perf_data_converter/src/quipper/
buffer_reader.cc 11 bool BufferReader::ReadData(const size_t size, void* dest) {
12 if (offset_ + size > size_) return false;
14 memcpy(dest, buffer_ + offset_, size);
15 offset_ += size;
19 bool BufferReader::ReadString(size_t size, string* str) {
20 if (offset_ + size > size_) return false;
22 size_t actual_length = strnlen(buffer_ + offset_, size);
24 offset_ += size;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
xlat_tables_arch.h 17 * Evaluates to 1 if the given virtual address space size is valid, or 0 if it's
20 * A valid size is one that is a power of 2 and is within the architectural
23 #define CHECK_VIRT_ADDR_SPACE_SIZE(size) \
24 (((size) >= MIN_VIRT_ADDR_SPACE_SIZE) && \
25 ((size) <= MAX_VIRT_ADDR_SPACE_SIZE) && \
26 IS_POWER_OF_TWO(size))
29 * Evaluates to 1 if the given physical address space size is a power of 2,
32 #define CHECK_PHY_ADDR_SPACE_SIZE(size) \
33 (IS_POWER_OF_TWO(size))
  /external/llvm/test/MC/AsmParser/
rename.s 3 .size bar, . - bar
5 .size foo, .Ltmp01 - foo
7 .size qux, .Ltmp0 - qux
10 // CHECK: .size bar, .Ltmp0-bar
12 // CHECK: .size foo, .Ltmp01-foo
14 // CHECK: .size qux, .Ltmp00-qux
  /external/ltp/testcases/kernel/io/ltp-aiodio/
common_checkzero.h 22 static char *check_zero(char *buf, int size)
28 while (size > 0) {
33 size > 1 ? (unsigned int)buf[1] : 0,
34 size > 2 ? (unsigned int)buf[2] : 0,
35 size > 3 ? (unsigned int)buf[3] : 0);
39 size--;
  /external/ltp/testcases/open_posix_testsuite/include/
mem_pattern.h 14 static void fill_mem(void *dst, size_t size)
18 while (--size > 0) {
19 *ptr = (size % 256) ^ 0x42;
24 static int check_mem(void *src, size_t size)
28 while (--size > 0) {
29 if (*ptr != ((size % 256) ^ 0x42))
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.cpp 7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize)
11 result = _stream->Write(data, size, &size);
13 _crc = CrcUpdate(_crc, data, size);
14 _size += size;
16 *processedSize = size;
  /external/swiftshader/third_party/LLVM/test/MC/AsmParser/
rename.s 3 .size bar, . - bar
5 .size foo, .Ltmp01 - foo
7 .size qux, .Ltmp0 - qux
10 // CHECK: .size bar, .Ltmp0-bar
12 // CHECK: .size foo, .Ltmp01-foo
14 // CHECK: .size qux, .Ltmp02-qux
  /external/valgrind/memcheck/tests/solaris/
ldynsym.c 6 static void function3(size_t size)
8 malloc(size);
12 static void function2(size_t size)
14 function3(size);
18 static void function(size_t size)
20 function2(size);
  /external/autotest/frontend/client/src/autotest/common/
UnmodifiableSublistView.java 8 protected int start, size; field in class:UnmodifiableSublistView
10 public UnmodifiableSublistView(List<T> list, int start, int size) {
12 assert size >= 0; local
13 assert start + size <= list.size(); local
17 this.size = size;
22 if (arg0 >= size())
28 public int size() { method in class:UnmodifiableSublistView
29 return this.size;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_internal.h 40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
51 #define LEN(size) \
53 PAD(__len, size); \
54 __len += size; \
57 #define LEN_ARRAY(size, name) \
60 PAD(__len, size); \
61 __len += size * name##_len; \
64 #define WRITE(size, type, name) \
66 PAD(__pos, size); \
68 __pos += size; \
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
RampedSineTone.java 34 public void generateTone(short[] tone, int size) {
35 super.generateTone(tone, size);
37 for (int i = 0; i < size; i++) {
40 //for first half of sample amplitude is increasing hence i < size / 2
41 if (i < size / 2) {
42 factor = (i / (float) size) * 2;
44 factor = ((size - i) / (float) size) * 2;
54 public void generateTone(double[] tone, int size) {
55 super.generateTone(tone, size);
    [all...]
  /external/libchrome/base/allocator/
allocator_shim_override_linker_wrapped_symbols.h 20 SHIM_ALWAYS_EXPORT void* __wrap_calloc(size_t n, size_t size) {
21 return ShimCalloc(n, size, nullptr);
28 SHIM_ALWAYS_EXPORT void* __wrap_malloc(size_t size) {
29 return ShimMalloc(size, nullptr);
32 SHIM_ALWAYS_EXPORT void* __wrap_memalign(size_t align, size_t size) {
33 return ShimMemalign(align, size, nullptr);
38 size_t size) {
39 return ShimPosixMemalign(res, align, size);
42 SHIM_ALWAYS_EXPORT void* __wrap_pvalloc(size_t size) {
43 return ShimPvalloc(size);
    [all...]
  /external/zopfli/src/zopfli/
util.h 36 The window size for deflate. Must be a power of two. This should be 32768, the
44 window size must be a power of two.
53 Dividing into huge blocks hurts compression, but not much relative to the size.
84 consumes a lot of memory but speeds it up. No effect on compression size.
141 Appends value to dynamically allocated memory, doubling its allocation size
146 size: pointer to the size of the array to append to, type size_t*. This is the
147 size that you consider the array to be, not the internal allocation size.
148 Precondition: allocated size of data is at least a power of two greater than o
    [all...]

Completed in 539 milliseconds

12 3 4 5 6 7 8 91011>>