Home
last modified time | relevance | path

Searched refs:size (Results 13351 - 13375 of 40656) sorted by relevance

1...<<531532533534535536537538539540>>...1627

/third_party/musl/porting/linux/user/include/fortify/
H A Dfortify.h117 #define __DIAGNOSE_BOS_TRIVIALLY_GE_MUL(bos_val, size, count) \
118 __DIAGNOSE_BOS_DYNAMIC_CHECK_IMPL_AND(bos_val, >=, (size) * (count), \
119 !__DIAGNOSE_UNSAFE_CHK_MUL_OVERFLOW(size, count))
127 #define CALLED_WITH_SIZE_BIGGER_BUFFER "called with bigger size than the buffer"
129 #define SIZE_LARGER_THEN_DESTINATION_BUFFER "the size is greater than the target buffer"
/third_party/musl/src/passwd/
H A Dgetspnam_r.c69 int getspnam_r(const char *name, struct spwd *sp, char *buf, size_t size, struct spwd **res) in getspnam_r() argument
86 /* Buffer size must at least be able to hold name, plus some.. */ in getspnam_r()
87 if (size < l+100) in getspnam_r()
116 while (fgets(buf, size, f) && (k=strlen(buf))>0) { in getspnam_r()
/third_party/node/benchmark/tls/
H A Dsecure-pair.js6 size: [100, 1024, 1024 * 1024],
17 function main({ dur, size, securing }) {
18 const chunk = Buffer.alloc(size, 'b');
/third_party/node/deps/icu-small/source/i18n/
H A Dbrktrans.cpp128 if (boundaries->size() != 0) { // if we found something, adjust in handleTransliterate()
129 delta = boundaries->size() * fInsertion.length(); in handleTransliterate()
134 while (boundaries->size() > 0) { in handleTransliterate()
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_x86-64_asm.py114 size = 0
116 size += p.get_stack_size()
118 return size
143 print('\t.size\t_x86_64_get_dispatch, .-_x86_64_get_dispatch')
207 print('\t.size\tGL_PREFIX(%s), .-GL_PREFIX(%s)' % (name, name))
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dfilestrm.cpp168 int32_t size = 0; in T_FileStream_size() local
173 size = (int32_t)ftell((FILE*)fileStream); in T_FileStream_size()
175 return size; in T_FileStream_size()
/third_party/mesa3d/src/intel/tools/
H A Daub_write.h128 void aub_map_ppgtt(struct aub_file *aub, uint64_t start, uint64_t size);
129 void aub_write_ggtt(struct aub_file *aub, uint64_t virt_addr, uint64_t size, const void *data);
132 uint32_t size, uint64_t gtt_offset);
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_texture.h73 * For 3D textures, this must be set to header size since
86 unsigned size; member
89 unsigned size; member
150 unsigned size; member
178 * Represents the block size of a single plane. For AFBC, this represents the
179 * superblock size. For u-interleaving, this represents the tile size.
/third_party/libdrm/radeon/
H A Dradeon_bo.c41 op, bo, bo->handle, boi->size, boi->cref); in radeon_bo_debug()
45 radeon_bo_open(struct radeon_bo_manager *bom, uint32_t handle, uint32_t size, in radeon_bo_open() argument
49 bo = bom->funcs->bo_open(bom, handle, size, alignment, domains, flags); in radeon_bo_open()
/third_party/libfuse/test/
H A Dtest_ctests.py93 size = os.path.getsize(filename)
97 assert new_size > size
99 assert new_size == size
/third_party/ltp/testcases/kernel/mem/mtest06/
H A Dmmap3.c8 * manager by repeaded map/write/unmap of file/memory of random size (maximum
11 * Create a file of random size upto 1000 times 4096, map it, change the
33 static int mkfile(int *size) in mkfile() argument
46 *size = (1 + (int)(1000.0 * rand() / (RAND_MAX + 1.0))) * 4096; in mkfile()
48 while (index < *size) { in mkfile()
88 tst_res(TINFO, "Thread %4li, addr [%p], size %4ikB, iter %4d", in map_write_unmap()
/third_party/ltp/testcases/kernel/syscalls/clock_settime/
H A Dclock_settime01.c109 {&begin, .size = sizeof(*begin)},
110 {&change, .size = sizeof(*change)},
111 {&end, .size = sizeof(*end)},
/third_party/ltp/testcases/kernel/syscalls/memfd_create/
H A Dmemfd_create03.c19 * huge page size should return EINVAL error.
35 static void *check_huge_mmapable(int fd, unsigned long size) in check_huge_mmapable() argument
39 mem = SAFE_MMAP(NULL, size, PROT_WRITE, MAP_PRIVATE, fd, 0); in check_huge_mmapable()
45 NULL, size, PROT_WRITE, MAP_PRIVATE, fd, 0); in check_huge_mmapable()
/third_party/ltp/testcases/kernel/syscalls/clone3/
H A Dclone302.c27 size_t size; member
37 {"zero size", &valid_args, 0, 0, NULL, SIGCHLD, 0, 0, 0, EINVAL},
38 {"short size", &valid_args, sizeof(struct clone_args_minimal) - 1, 0, NULL, SIGCHLD, 0, 0, 0, EINVAL},
39 {"extra size", &valid_args, sizeof(*valid_args) + 1, 0, NULL, SIGCHLD, 0, 0, 0, EFAULT},
45 {"zero-stack-size", &valid_args, sizeof(*valid_args), 0, NULL, SIGCHLD, (unsigned long)&stack, 0, 0, EINVAL},
88 TEST(clone3(args, tc->size)); in run()
113 {&valid_args, .size = sizeof(*valid_args)},
/third_party/ltp/testcases/kernel/syscalls/ipc/shmctl/
H A Dshmctl04.c62 int shmid, size, rss, swap; in parse_proc_sysvipc() local
65 * Sum rss, swap and size for all elements listed, which should equal in parse_proc_sysvipc()
68 * Note that the size has to be rounded up to nearest multiple of page in parse_proc_sysvipc()
69 * size. in parse_proc_sysvipc()
72 &shmid, &size, &rss, &swap) > 0) { in parse_proc_sysvipc()
76 shm_tot += (size + page_size - 1) / page_size; in parse_proc_sysvipc()
/third_party/node/deps/v8/src/compiler/
H A Dnode-aux-data.h38 if (id >= aux_data_.size()) aux_data_.resize(id + 1, def(zone_)); in Set()
48 return (id < aux_data_.size()) ? aux_data_[id] : def(zone_); in Get()
105 aux_data_.size()); in end()
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-openbsd.cc110 long size = sysconf(_SC_PAGESIZE); // NOLINT: type more fit than uint64_t in SignalCodeMovingGC() local
117 mmap(NULL, size, PROT_READ | PROT_EXEC, MAP_PRIVATE, fileno(f), 0); in SignalCodeMovingGC()
119 OS::Free(addr, size); in SignalCodeMovingGC()
H A Dplatform-freebsd.cc114 size_t size; in GetStackStart() local
115 error = pthread_attr_getstack(&attr, &base, &size); in GetStackStart()
118 return reinterpret_cast<uint8_t*>(base) + size; in GetStackStart()
/third_party/node/deps/v8/src/base/
H A Dsys-info.cc76 size_t size = sizeof(pages); in AmountOfPhysicalMemory()
77 sysctlbyname("vm.stats.vm.v_page_count", &pages, &size, nullptr, 0); in AmountOfPhysicalMemory()
78 sysctlbyname("vm.stats.vm.v_page_size", &page_size, &size, nullptr, 0); in AmountOfPhysicalMemory()
/third_party/node/deps/v8/src/diagnostics/
H A Dbasic-block-profiler.h36 DCHECK_EQ(block_ids_.size(), counts_.size()); in n_blocks()
37 return block_ids_.size(); in n_blocks()
/third_party/node/deps/v8/src/heap/
H A Dheap-allocator.h64 AllocateRawWith(int size, AllocationType allocation,
90 int size, AllocationType allocation, AllocationOrigin origin,
94 int size, AllocationType allocation, AllocationOrigin origin,
/third_party/node/deps/v8/src/profiler/
H A Dheap-profiler.h63 void ObjectMoveEvent(Address from, Address to, int size);
65 void AllocationEvent(Address addr, int size) override;
67 void UpdateObjectSizeEvent(Address addr, int size) override;
/third_party/node/deps/v8/src/sandbox/
H A Dsandbox.h53 // base base + size
75 size_t size() const { return size_; } in size() function in v8::internal::Sandbox
132 // subspaces. The size must be a multiple of the allocation granularity of the
134 bool Initialize(v8::VirtualAddressSpace* vas, size_t size,
140 // it and be corrupted. The size and size_to_reserve parameters must be
143 size_t size,
154 // Base and size of the virtual memory reservation backing this sandbox.
155 // These can be different from the sandbox base and size due to guard regions
/third_party/musl/libc-test/src/functionalext/supplement/ldso/
H A Ddl_iterate_phdr.c26 static int header_handler(struct dl_phdr_info *info, size_t size, void *data) in header_handler() argument
37 static int same_name_count_handler(struct dl_phdr_info *info, size_t size, void *data) in same_name_count_handler() argument
46 static int lock_recursive_handler(struct dl_phdr_info *info, size_t size, void *data) in lock_recursive_handler() argument
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/
H A Dsfn_shaderfromstring_test.cpp118 ASSERT_EQ(eval.size(), expect.size()); in check()
120 for (unsigned i = 0; i < eval.size(); ++i) { in check()

Completed in 21 milliseconds

1...<<531532533534535536537538539540>>...1627