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

  /bionic/tests/
stdio_test.cpp 86 size_t allocated_length = 0; local
91 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), static_cast<int>(strlen(expected[i])));
92 ASSERT_GE(allocated_length, strlen(expected[i]));
102 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), -1);
150 size_t allocated_length = 0; local
154 while ((read_char_count = getline(&line_read, &allocated_length, fp)) != -1) {
156 ASSERT_GE(allocated_length, strlen(line_written));
169 ASSERT_EQ(getline(&line_read, &allocated_length, fp), -1);
  /external/chromium_org/v8/src/
runtime.h 844 size_t allocated_length);
849 size_t allocated_length,
runtime.cc 765 size_t allocated_length = NumberToSize(
770 -static_cast<int64_t>(allocated_length));
774 allocated_length);
782 size_t allocated_length) {
793 isolate->factory()->NewNumberFromSize(allocated_length);
806 size_t allocated_length,
810 if (allocated_length != 0) {
812 data = V8::ArrayBufferAllocator()->Allocate(allocated_length);
815 V8::ArrayBufferAllocator()->AllocateUninitialized(allocated_length);
822 SetupArrayBuffer(isolate, array_buffer, false, data, allocated_length);
858 size_t allocated_length = 0; local
    [all...]

Completed in 75 milliseconds