Home
last modified time | relevance | path

Searched refs:change_in_bytes (Results 1 – 13 of 13) sorted by relevance

/third_party/cef/libcef_dll/ctocpp/
Dv8value_ctocpp.h80 int AdjustExternallyAllocatedMemory(int change_in_bytes) override;
Dv8value_ctocpp.cc820 int CefV8ValueCToCpp::AdjustExternallyAllocatedMemory(int change_in_bytes) { in AdjustExternallyAllocatedMemory() argument
829 _struct->adjust_externally_allocated_memory(_struct, change_in_bytes); in AdjustExternallyAllocatedMemory()
/third_party/cef/libcef/renderer/
Dv8_impl.cc244 int AdjustExternallyAllocatedMemory(int change_in_bytes) { in AdjustExternallyAllocatedMemory() argument
245 int new_value = external_memory_ + change_in_bytes; in AdjustExternallyAllocatedMemory()
248 change_in_bytes = -(external_memory_); in AdjustExternallyAllocatedMemory()
252 if (change_in_bytes != 0) in AdjustExternallyAllocatedMemory()
253 isolate_->AdjustAmountOfExternalAllocatedMemory(change_in_bytes); in AdjustExternallyAllocatedMemory()
2200 int CefV8ValueImpl::AdjustExternallyAllocatedMemory(int change_in_bytes) { in AdjustExternallyAllocatedMemory() argument
2217 return tracker->AdjustExternallyAllocatedMemory(change_in_bytes); in AdjustExternallyAllocatedMemory()
Dv8_impl.h270 int AdjustExternallyAllocatedMemory(int change_in_bytes) override;
/third_party/cef/libcef_dll/cpptoc/
Dv8value_cpptoc.cc819 int change_in_bytes) { in v8value_adjust_externally_allocated_memory() argument
828 change_in_bytes); in v8value_adjust_externally_allocated_memory()
/third_party/cef/include/
Dcef_v8.h823 virtual int AdjustExternallyAllocatedMemory(int change_in_bytes) = 0;
/third_party/cef/include/capi/
Dcef_v8_capi.h657 int change_in_bytes);
/third_party/node/deps/v8/include/
Dv8-isolate.h840 int64_t AdjustAmountOfExternalAllocatedMemory(int64_t change_in_bytes);
/third_party/node/src/
Djs_native_api.h457 int64_t change_in_bytes,
Dnode_buffer.cc180 int64_t change_in_bytes = -static_cast<int64_t>(sizeof(*this)); in CallAndResetCallback() local
181 env_->isolate()->AdjustAmountOfExternalAllocatedMemory(change_in_bytes); in CallAndResetCallback()
Djs_native_api_v8.cc3314 int64_t change_in_bytes, in napi_adjust_external_memory() argument
3320 env->isolate->AdjustAmountOfExternalAllocatedMemory(change_in_bytes); in napi_adjust_external_memory()
/third_party/node/deps/v8/src/api/
Dapi.cc9048 int64_t change_in_bytes) { in AdjustAmountOfExternalAllocatedMemory() argument
9054 CHECK(kMinReasonableBytes <= change_in_bytes && in AdjustAmountOfExternalAllocatedMemory()
9055 change_in_bytes < kMaxReasonableBytes); in AdjustAmountOfExternalAllocatedMemory()
9058 int64_t amount = i_isolate->heap()->update_external_memory(change_in_bytes); in AdjustAmountOfExternalAllocatedMemory()
9060 if (change_in_bytes <= 0) return amount; in AdjustAmountOfExternalAllocatedMemory()
/third_party/node/doc/api/
Dn-api.md5884 int64_t change_in_bytes,
5889 * `[in] change_in_bytes`: The change in externally allocated memory that is kept