HomeSort by relevance Sort by last modified time
    Searched refs:ByteLength (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/ppapi/api/
ppb_var_array_buffer.idl 38 * ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
43 * Note that ByteLength() will successfully retrieve the size of an
55 PP_Bool ByteLength([in] PP_Var array, [out] uint32_t byte_length);
73 * PP_Bool ok = array_buffer_if.ByteLength(array_buffer_var, &byte_length);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_array_buffer_interface.h 18 virtual PP_Bool ByteLength(struct PP_Var var, uint32_t* byte_length);
fake_var_array_buffer_interface.cc 24 PP_Bool FakeVarArrayBufferInterface::ByteLength(struct PP_Var var,
  /external/chromium_org/ppapi/c/
ppb_var_array_buffer.h 51 * ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
56 * Note that ByteLength() will successfully retrieve the size of an
68 PP_Bool (*ByteLength)(struct PP_Var array, uint32_t* byte_length);
85 * PP_Bool ok = array_buffer_if.ByteLength(array_buffer_var, &byte_length);
  /external/chromium_org/content/renderer/pepper/
host_array_buffer_var.cc 55 uint32 HostArrayBufferVar::ByteLength() { return buffer_.byteLength(); }
63 ->HostAllocateSharedMemoryBuffer(ByteLength())
68 shm->Map(ByteLength());
69 memcpy(shm->memory(), Map(), ByteLength());
host_array_buffer_var.h 27 virtual uint32 ByteLength() OVERRIDE;
  /external/chromium_org/ppapi/cpp/
var_array_buffer.h 64 /// ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
68 uint32_t ByteLength() const;
84 /// uint32_t byte_length = array_buffer_var.ByteLength();
var_array_buffer.cc 52 uint32_t VarArrayBuffer::ByteLength() const {
55 get_interface<PPB_VarArrayBuffer_1_0>()->ByteLength(var_, &byte_length);
  /external/chromium_org/ppapi/proxy/
plugin_array_buffer_var.cc 75 uint32 PluginArrayBufferVar::ByteLength() {
90 instance, ByteLength(), host_handle_id, &plugin_handle));
97 if (!s.Map(ByteLength()))
99 memcpy(s.memory(), Map(), ByteLength());
plugin_array_buffer_var.h 31 virtual uint32 ByteLength() OVERRIDE;
platform_verification_private_resource.cc 59 uint32 challenge_length = challenge_buffer->ByteLength();
  /external/chromium_org/base/win/
scoped_bstr_unittest.cc 22 EXPECT_EQ(0, b.ByteLength());
38 EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.ByteLength());
55 EXPECT_EQ(100, b2.ByteLength());
scoped_bstr.h 77 size_t ByteLength() const;
scoped_bstr.cc 66 size_t ScopedBstr::ByteLength() const {
  /external/chromium_org/v8/src/extensions/
free-buffer-extension.cc 24 V8::ArrayBufferAllocator()->Free(contents.Data(), contents.ByteLength());
  /external/chromium_org/ppapi/shared_impl/
ppb_var_shared.cc 89 PP_Bool ByteLength(PP_Var array, uint32_t* byte_length) {
94 *byte_length = buffer->ByteLength();
114 &CreateArrayBufferVar, &ByteLength, &Map, &Unmap};
unittest_utils.cc 99 if (expected_var->ByteLength() != actual_var->ByteLength()) {
100 LOG(ERROR) << "expected: " << expected_var->ByteLength()
101 << " actual: " << actual_var->ByteLength();
106 expected_var->ByteLength()) != 0) {
var.h 165 virtual uint32 ByteLength() = 0;
  /external/chromium_org/ppapi/tests/
test_platform_verification_private.cc 30 for (uint32_t i = 0; i < challenge_array.ByteLength(); ++i)
test_flash_clipboard.cc 175 ASSERT_TRUE(array_buffer_result.ByteLength() == array_buffer.ByteLength());
177 ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.ByteLength(),
211 ASSERT_EQ(array_buffer_result.ByteLength(), array_buffer.ByteLength());
213 ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.ByteLength(),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winperf.h 140 DWORD ByteLength;
163 DWORD ByteLength;
172 DWORD ByteLength;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferCustom.cpp 69 v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(isolate, impl->data(), impl->byteLength());
86 ArrayBufferContents contents(v8Contents.Data(), v8Contents.ByteLength(),
V8DataViewCustom.h 51 return value->ByteLength();
56 return array->byteLength();
  /external/chromium_org/gin/
array_buffer.cc 105 length_ = contents.ByteLength();
172 num_bytes_(view->ByteLength()) {
  /external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc 129 uint32_t buffer_size = buffer.ByteLength();

Completed in 617 milliseconds

1 2