Home
last modified time | relevance | path

Searched refs:size (Results 11726 - 11750 of 59271) sorted by relevance

1...<<461462463464465466467468469470>>...2371

/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/fman/
H A Dfman_muram.h16 struct muram_info *fman_muram_init(phys_addr_t base, size_t size);
21 unsigned long fman_muram_alloc(struct muram_info *muram, size_t size);
24 size_t size);
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/eed1_8/
H A Dia_css_eed1_8.host.h26 size_t size);
32 size_t size);
37 size_t size);
/test/testfwk/arkxtest/testserver/test/fuzztest/loadtestserver_fuzzer/
H A Dloadtestserver_fuzzer.cpp25 bool DoSomethingInterestingWithMyAPI(const uint8_t* data, size_t size) in DoSomethingInterestingWithMyAPI() argument
36 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) in LLVMFuzzerTestOneInput() argument
39 OHOS::DoSomethingInterestingWithMyAPI(data, size); in LLVMFuzzerTestOneInput()
/third_party/ffmpeg/libavcodec/
H A Dchomp_bsf.c33 while (pkt->size > 0 && !pkt->data[pkt->size - 1]) in chomp_filter()
34 pkt->size--; in chomp_filter()
H A Dsinewin_tablegen.c27 #define SINETABLE(size) \
28 float ff_sine_##size[size]
H A Dsinewin.h33 #define SINETABLE(size) \
34 SINETABLE_CONST DECLARE_ALIGNED(32, float, ff_sine_##size)[size]
39 * @param n size of half window
/third_party/ffmpeg/libavformat/
H A Dhevc.h36 * are replaced by 4-byte size fields, as per ISO/IEC 14496-15).
43 * @param size size (in bytes) of the input buffer
52 int size, int filter_ps, int *ps_count);
58 * are replaced by 4-byte size fields, as per ISO/IEC 14496-15).
63 * On success, *size holds the size (in bytes) of the output data buffer.
66 * @param size address of the variable holding the size (in bytes) of the input
79 int *size, in
[all...]
/third_party/curl/lib/
H A Dinet_ntop.h29 char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
35 #define Curl_inet_ntop(af,addr,buf,size) \
36 inet_ntop(af, addr, buf, (curl_socklen_t)size)
/third_party/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 Z7_COM7F_IMF(CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)) in Write() argument
9 UInt32 realProcessedSize = size; in Write()
12 res = _stream->Write(data, size, &realProcessedSize); in Write()
/third_party/ltp/include/old/
H A Dold_device.h46 const char *tst_acquire_device_(void (cleanup_fn)(void), unsigned int size);
48 const char *tst_acquire_device__(unsigned int size);
64 const char *tst_acquire_loop_device(unsigned int size, const char *filename);
/third_party/ntfs-3g/include/ntfs-3g/
H A Dmst.h30 extern int ntfs_mst_post_read_fixup(NTFS_RECORD *b, const u32 size);
31 extern int ntfs_mst_post_read_fixup_warn(NTFS_RECORD *b, const u32 size,
33 extern int ntfs_mst_pre_write_fixup(NTFS_RECORD *b, const u32 size);
/third_party/node/benchmark/crypto/
H A DrandomBytes.js7 size: [64, 1024, 8192, 512 * 1024],
11 function main({ n, size }) {
14 randomBytes(size);
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_heap.h29 * On initial allocation, there is a single node with the full size that's
44 * full size of the heap.
53 unsigned size; member
60 unsigned size);
66 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv,
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/
H A D9-1-buildonly.c16 ssize_t size; in test_mq_timedreceive_prototype() local
24 size = mq_timedreceive(mqdes, msgp, msg_len, &msg_prio, &abstime); in test_mq_timedreceive_prototype()
25 (void)size; in test_mq_timedreceive_prototype()
/third_party/node/deps/v8/src/codegen/
H A Dflush-instruction-cache.h14 V8_EXPORT_PRIVATE void FlushInstructionCache(void* start, size_t size);
16 size_t size) { in FlushInstructionCache()
17 return FlushInstructionCache(reinterpret_cast<void*>(start), size); in FlushInstructionCache()
15 FlushInstructionCache(Address start, size_t size) FlushInstructionCache() argument
/third_party/node/deps/v8/src/codegen/loong64/
H A Dcpu-loong64.cc17 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache() argument
20 if (size == 0) { in FlushICache()
26 char* end = reinterpret_cast<char*>(start) + size; in FlushICache()
/third_party/node/deps/uvwasi/src/
H A Duvwasi_alloc.h6 void* uvwasi__malloc(const uvwasi_t* uvwasi, size_t size);
8 void* uvwasi__calloc(const uvwasi_t* uvwasi, size_t nmemb, size_t size);
9 void* uvwasi__realloc(const uvwasi_t* uvwasi, void* ptr, size_t size);
/third_party/skia/third_party/externals/freetype/include/freetype/
H A Dftsizes.h5 * FreeType size objects management (specification).
57 * object is automatically created and used to store all pixel-size
58 * dependent information, available in the `face->size` field.
65 * contents of the current 'active' size; you thus need to use
80 * Create a new size object from a given face object.
88 * A handle to a new size object.
94 * You need to call @FT_Activate_Size in order to select the new size for
100 FT_Size* size );
109 * Discard a given size object. Note that @FT_Done_Face automatically
110 * discards all size object
120 FT_Done_Size( FT_Size size ); global() variable
149 FT_Activate_Size( FT_Size size ); global() variable
[all...]
/third_party/skia/fuzz/oss_fuzz/
H A DFuzzMockGPUCanvas.cpp22 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { in LLVMFuzzerTestOneInput() argument
23 if (size > 4000) { in LLVMFuzzerTestOneInput()
27 auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size)); in LLVMFuzzerTestOneInput()
/third_party/skia/docs/examples/
H A DImageInfo_ByteSizeOverflowed.cpp11 const size_t size = info.computeByteSize(rowBytes); in REG_FIDDLE() local
12 SkDebugf("rowBytes:%llu size:%llu overflowed:%s\n", rowBytes, size, in REG_FIDDLE()
13 SkImageInfo::ByteSizeOverflowed(size) ? "true" : "false"); in REG_FIDDLE()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeMemPool.cpp34 deUintptr size = (deUintptr)strlen(string) + 1; in copyToPool() local
35 char* copy = (char*)pool->alloc(size); in copyToPool()
37 std::copy(string, string+size, copy); in copyToPool()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cTextureGatherTests.cpp439 GLint size = csize; in CreateTexture2DRgb() local
445 for (int i = 0; size > 0; ++i, size /= 2) in CreateTexture2DRgb()
447 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, 0); in CreateTexture2DRgb()
472 GLint size = csize; in CreateTexture2DRg() local
478 for (int i = 0; size > 0; ++i, size /= 2) in CreateTexture2DRg()
480 glTexImage2D(target, i, internal_format, size, size, in CreateTexture2DRg()
505 GLint size = csize; CreateTexture2DR() local
536 GLint size = csize; CreateTexture2DInt() local
574 GLint size = csize; CreateTexture2DArrayInt() local
608 GLint size = csize; CreateTextureCubeArray() local
657 GLint size = csize; CreateTextureCubeArrayInt() local
698 GLint size = csize; CreateTexture2DArray() local
735 GLint size = csize; CreateTextureCubeInt() local
779 GLint size = csize; CreateTextureCube() local
830 GLint size = csize; CreateTexture2D() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp80 for (unsigned i = 0, e = Ops.size(); i != e; ++i) { in PrintOps()
605 for (unsigned i = 0, e = LeafOrder.size(); i != e; ++i) { in LinearizeExprTree()
637 assert(Ops.size() > 1 && "Single values should be used directly!"); in RewriteExprTree()
665 for (unsigned i = 0, e = Ops.size(); i != e; ++i) in RewriteExprTree()
676 if (i+2 == Ops.size()) { in RewriteExprTree()
805 for (unsigned i = 0, e = NodesToRewrite.size(); i != e; ++i) in RewriteExprTree()
1006 unsigned e = Ops.size(); in FindInOperandList()
1031 if (Ops.size() == 1) return Ops.back(); in EmitAddTreeOfValues()
1050 Factors.reserve(Tree.size()); in RemoveFactorFromExpression()
1051 for (unsigned i = 0, e = Tree.size(); in RemoveFactorFromExpression()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp45 // networks, each half in size in terms of the number of nodes. In those
134 Node Num = Order.size(); in conj()
166 for (unsigned P = 0; P != Order.size(); ++P) { in build()
176 for (unsigned I = 0; I != Order.size(); ++I) { in build()
194 for (unsigned I = 0; I != Q.size(); ++I) { in color()
233 for (unsigned I = 0; I < WorkQ.size(); ++I) { in color()
263 for (unsigned I = 0; I != Order.size(); ++I) in color()
273 for (unsigned I = 0; I != Order.size(); ++I) { in dump()
334 Order.assign(Ord.data(), Ord.data()+Ord.size()); in PermNetwork()
337 unsigned S = Order.size(); in PermNetwork()
366 unsigned size() const { size() function
[all...]
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64.cc355 reloc_info_writer.Reposition(buffer_start_ + buffer_->size(), pc_); in Assembler()
423 int num = static_cast<int>(farjmp_positions_.size()); in FinalizeJumpOptimizationInfo()
551 CHECK(idx < static_cast<int>(bitmap.size() * 32)); in is_optimizable_farjmp()
558 // Compute new buffer size.
560 int old_size = buffer_->size();
571 DCHECK_EQ(new_size, new_buffer->size());
634 void Assembler::arithmetic_op(byte opcode, Register reg, Operand op, int size) { in arithmetic_op() argument
636 emit_rex(reg, op, size); in arithmetic_op()
642 int size) { in arithmetic_op()
647 emit_rex(rm_reg, reg, size); in arithmetic_op()
641 arithmetic_op(byte opcode, Register reg, Register rm_reg, int size) arithmetic_op() argument
714 immediate_arithmetic_op(byte subcode, Register dst, Immediate src, int size) immediate_arithmetic_op() argument
732 immediate_arithmetic_op(byte subcode, Operand dst, Immediate src, int size) immediate_arithmetic_op() argument
805 shift(Register dst, Immediate shift_amount, int subcode, int size) shift() argument
822 shift(Operand dst, Immediate shift_amount, int subcode, int size) shift() argument
839 shift(Register dst, int subcode, int size) shift() argument
846 shift(Operand dst, int subcode, int size) shift() argument
1199 emit_cmpxchg(Operand dst, Register src, int size) emit_cmpxchg() argument
1233 emit_dec(Register dst, int size) emit_dec() argument
1240 emit_dec(Operand dst, int size) emit_dec() argument
1269 emit_idiv(Register src, int size) emit_idiv() argument
1276 emit_div(Register src, int size) emit_div() argument
1283 emit_imul(Register src, int size) emit_imul() argument
1290 emit_imul(Operand src, int size) emit_imul() argument
1297 emit_imul(Register dst, Register src, int size) emit_imul() argument
1305 emit_imul(Register dst, Operand src, int size) emit_imul() argument
1313 emit_imul(Register dst, Register src, Immediate imm, int size) emit_imul() argument
1327 emit_imul(Register dst, Operand src, Immediate imm, int size) emit_imul() argument
1341 emit_inc(Register dst, int size) emit_inc() argument
1348 emit_inc(Operand dst, int size) emit_inc() argument
1564 emit_lea(Register dst, Operand src, int size) emit_lea() argument
1655 emit_mov(Register dst, Operand src, int size) emit_mov() argument
1662 emit_mov(Register dst, Register src, int size) emit_mov() argument
1681 emit_mov(Operand dst, Register src, int size) emit_mov() argument
1688 emit_mov(Register dst, Immediate value, int size) emit_mov() argument
1701 emit_mov(Operand dst, Immediate value, int size) emit_mov() argument
1709 emit_mov(Register dst, Immediate64 value, int size) emit_mov() argument
1852 emit_movzxb(Register dst, Operand src, int size) emit_movzxb() argument
1862 emit_movzxb(Register dst, Register src, int size) emit_movzxb() argument
1877 emit_movzxw(Register dst, Operand src, int size) emit_movzxw() argument
1887 emit_movzxw(Register dst, Register src, int size) emit_movzxw() argument
1910 emit_repmovs(int size) emit_repmovs() argument
2014 emit_not(Register dst, int size) emit_not() argument
2021 emit_not(Operand dst, int size) emit_not() argument
2200 emit_xchg(Register dst, Register src, int size) emit_xchg() argument
2217 emit_xchg(Register dst, Operand src, int size) emit_xchg() argument
2277 emit_test(Register dst, Register src, int size) emit_test() argument
2297 emit_test(Register reg, Immediate mask, int size) emit_test() argument
2331 emit_test(Operand op, Immediate mask, int size) emit_test() argument
2359 emit_test(Operand op, Register reg, int size) emit_test() argument
[all...]

Completed in 26 milliseconds

1...<<461462463464465466467468469470>>...2371