HomeSort by relevance Sort by last modified time
    Searched defs:allocated_length (Results 1 - 2 of 2) sorted by null

  /bionic/tests/
stdio_test.cpp 103 size_t allocated_length = 0; local
108 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), static_cast<int>(strlen(expected[i])));
109 ASSERT_GE(allocated_length, strlen(expected[i]));
119 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), -1);
167 size_t allocated_length = 0; local
171 while ((read_char_count = getline(&line_read, &allocated_length, fp)) != -1) {
173 ASSERT_GE(allocated_length, strlen(line_written));
186 ASSERT_EQ(getline(&line_read, &allocated_length, fp), -1);
  /external/chromium_org/v8/src/
runtime.cc 767 size_t allocated_length = NumberToSize(
772 -static_cast<int64_t>(allocated_length));
776 allocated_length);
784 size_t allocated_length) {
795 isolate->factory()->NewNumberFromSize(allocated_length);
808 size_t allocated_length,
812 if (allocated_length != 0) {
814 data = V8::ArrayBufferAllocator()->Allocate(allocated_length);
817 V8::ArrayBufferAllocator()->AllocateUninitialized(allocated_length);
824 SetupArrayBuffer(isolate, array_buffer, false, data, allocated_length);
860 size_t allocated_length = 0; local
    [all...]

Completed in 204 milliseconds