/third_party/node/deps/v8/src/baseline/ |
H A D | baseline-compiler.h | 46 void Reserve(size_t size) { bytes_.reserve(size); } in Reserve() argument
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | frame-description.h | 53 // element size matches what the machine instructions expect. 54 static_assert(sizeof(Float64) == kDoubleSize, "size mismatch"); 91 void* operator new(size_t size, uint32_t frame_size) { 94 return base::Malloc(size + frame_size - kSystemPointerSize); 203 // keep the variable-size array frame_content_ of type intptr_t at
|
/third_party/node/deps/v8/src/heap/ |
H A D | allocation-observer.cc | 33 if (observers_.size() == 1) { in AddAllocationObserver() 58 if (observers_.size() == 0) { in RemoveAllocationObserver() 145 // Some observers were removed, recalculate step size. in InvokeAllocationObservers()
|
/third_party/node/deps/v8/src/objects/ |
H A D | option-utils.cc | 74 if (values.size() > 0) { in GetStringOption() 77 for (size_t i = 0; i < values.size(); i++) { in GetStringOption()
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | code-serializer.h | 163 SerializedCodeData(const byte* data, int size) in SerializedCodeData() argument 164 : SerializedData(const_cast<byte*>(data), size) {} in SerializedCodeData()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_image.h | 88 size_t size); 297 size_t size);
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_graph.h | 153 inline unsigned int getSize() const { return size; } in getSize() 176 unsigned int size; member in nv50_ir::Graph
|
H A D | nv50_ir_target_gm107.cpp | 41 TargetGM107::getBuiltinCode(const uint32_t **code, uint32_t *size) const in getBuiltinCode() 44 *size = sizeof(gm107_builtin_code); in getBuiltinCode()
|
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_buffer.h | 131 pb_size size; member 225 assert(*offset < (*base_buf)->size); in pb_get_base_buffer()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_fetch.h | 109 void set_element_size(int size) { m_elm_size = size;} in set_element_size() argument
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_core.c | 75 static int bio_core_gets(BIO *bio, char *buf, int size) in bio_core_gets() argument 81 return bcgbl->c_bio_gets(BIO_get_data(bio), buf, size); in bio_core_gets()
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | x86masm.pl | 46 { my($size,$addr,$reg1,$reg2,$idx)=@_; 51 $ret .= "$size PTR " if ($size ne "");
|
/third_party/node/deps/undici/src/lib/core/ |
H A D | connect.js | 24 if (this._sessionCache.size < this._maxCachedSessions) { 65 if (this._sessionCache.size >= this._maxCachedSessions) {
|
/third_party/node/deps/undici/src/lib/fileapi/ |
H A D | util.js | 375 const size = sequences.reduce((a, b) => { 385 }, new Uint8Array(size))
|
/third_party/node/deps/uvwasi/include/ |
H A D | wasi_serdes.h | 140 int uvwasi_serdes_check_bounds(size_t offset, size_t end, size_t size); 143 size_t size,
|
/third_party/libphonenumber/java/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/ |
H A D | PhonePrefixMap.java | 57 * Gets the size of the provided phone prefix map storage. The map storage passed-in will be 67 int sizeOfStorage = byteArrayOutputStream.size(); in getSizeOfPhonePrefixMapStorage() 155 while (currentSetOfLengths.size() > 0) { in lookup()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | RangeTreeFactorizer.java | 30 * the face of non-determinism. This can be used to reduce the size of any generated regular 68 if (ranges.getLengths().size() == 1) { in factor() 79 while (index < factors.size()) { in factor()
|
/third_party/rust/crates/atty/src/ |
H A D | lib.rs | 130 let size = mem::size_of::<FILE_NAME_INFO>(); in msys_tty_on() 131 let mut name_info_bytes = vec![0u8; size + MAX_PATH * mem::size_of::<WCHAR>()]; in msys_tty_on()
|
/third_party/openssl/crypto/bio/ |
H A D | bss_core.c | 75 static int bio_core_gets(BIO *bio, char *buf, int size) in bio_core_gets() argument 81 return bcgbl->c_bio_gets(BIO_get_data(bio), buf, size); in bio_core_gets()
|
/third_party/openssl/crypto/perlasm/ |
H A D | x86masm.pl | 46 { my($size,$addr,$reg1,$reg2,$idx)=@_; 51 $ret .= "$size PTR " if ($size ne "");
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTerminateInvocationTests.cpp | 78 for (unsigned i = 0; i < cases.size() ; ++i) in addTestsForAmberFiles() 92 for (size_t r = 0; r < reqmts.size() ; ++r) in addTestsForAmberFiles()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | RewriteOutArgs.cpp | 62 size_t uniqueSize() const { return mEntries.size(); } in uniqueSize() 119 size_t argCount = args.size();
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
H A D | SeparateDeclarations.cpp | 64 if (sequence->size() <= 1) in visitDeclaration() 74 for (size_t ii = 0; ii < sequence->size(); ++ii) in visitDeclaration()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | OptimizePHIs.cpp | 108 if (PHIsInCycle.size() == 16) in IsSingleValuePHICycle() 154 if (PHIsInCycle.size() == 16) in IsDeadPHICycle()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
H A D | DispatchStage.cpp | 99 assert(IS.getDefs().size() == 1 && "Expected a single input!"); in dispatch() 100 assert(IS.getUses().size() == 1 && "Expected a single output!"); in dispatch()
|