HomeSort by relevance Sort by last modified time
    Searched refs:ByteLength (Results 1 - 25 of 40) 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/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 59 uint32 HostArrayBufferVar::ByteLength() {
60 return buffer_.byteLength();
68 RenderThread::Get()->HostAllocateSharedMemoryBuffer(ByteLength()).
73 shm->Map(ByteLength());
74 memcpy(shm->memory(), Map(), ByteLength());
host_array_buffer_var.h 27 virtual uint32 ByteLength() OVERRIDE;
message_channel.cc 128 MakeArrayBufferPPVar(buffer->ByteLength());
136 memcpy(new_buffer->Map(), buffer->Map(), buffer->ByteLength());
  /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;
flash_clipboard_resource.cc 43 array_buffer_var->ByteLength());
raw_var_data.cc 408 if (buffer_var->ByteLength() >= g_minimum_array_buffer_size_for_shmem &&
426 buffer_var->ByteLength());
433 buffer_var->ByteLength());
  /external/chromium/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 78 size_t ByteLength() const;
scoped_bstr.cc 66 size_t ScopedBstr::ByteLength() const {
  /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/ppapi/shared_impl/
ppb_var_shared.cc 79 PP_Bool ByteLength(PP_Var array, uint32_t* byte_length) {
84 *byte_length = buffer->ByteLength();
105 &ByteLength,
unittest_utils.cc 95 if (expected_var->ByteLength() != actual_var->ByteLength()) {
96 LOG(ERROR) << "expected: " << expected_var->ByteLength() <<
97 " actual: " << actual_var->ByteLength();
101 expected_var->ByteLength()) != 0) {
var.h 164 virtual uint32 ByteLength() = 0;
  /external/chromium_org/ppapi/tests/
test_flash_clipboard.cc 161 ASSERT_TRUE(array_buffer_result.ByteLength() == array_buffer.ByteLength());
163 ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.ByteLength(),
196 ASSERT_EQ(array_buffer_result.ByteLength(), array_buffer.ByteLength());
198 ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.ByteLength(),
test_post_message.cc 397 ASSERT_EQ(sizes[i], test_data.ByteLength());
399 const uint32_t kByteLength = test_data.ByteLength();
408 std::string("message_event.data.byteLength === ") + kSizeAsString);
412 // Checks that the last element has the right value: (byteLength-1)%256.
414 " message_event.data.byteLength-1)");
415 std::string expected_byte("(message_event.data.byteLength-1)%256");
432 ASSERT_EQ(test_data.ByteLength(), received.ByteLength());
439 for (size_t i = 0; i < test_data.ByteLength(); ++i)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferCustom.cpp 73 v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(impl->data(), impl->byteLength());
74 v8::V8::AdjustAmountOfExternalAllocatedMemory(impl->byteLength());
92 ArrayBufferContents contents(v8Contents.Data(), v8Contents.ByteLength());
V8DataViewCustom.h 51 return value->ByteLength();
56 return array->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 5573 milliseconds

1 2