OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:allocated_length
(Results
1 - 2
of
2
) sorted by null
/bionic/tests/
stdio_test.cpp
61
size_t
allocated_length
= 0;
local
66
ASSERT_EQ(getdelim(&word_read, &
allocated_length
, ' ', fp), static_cast<int>(strlen(expected[i])));
67
ASSERT_GE(
allocated_length
, strlen(expected[i]));
77
ASSERT_EQ(getdelim(&word_read, &
allocated_length
, ' ', fp), -1);
123
size_t
allocated_length
= 0;
local
127
while ((read_char_count = getline(&line_read, &
allocated_length
, fp)) != -1) {
129
ASSERT_GE(
allocated_length
, strlen(line_written));
142
ASSERT_EQ(getline(&line_read, &
allocated_length
, fp), -1);
/external/chromium_org/v8/src/
runtime.cc
731
size_t
allocated_length
= NumberToSize(
735
-static_cast<int64_t>(
allocated_length
));
739
allocated_length
);
747
size_t
allocated_length
) {
758
isolate->factory()->NewNumberFromSize(
allocated_length
);
771
size_t
allocated_length
,
775
if (
allocated_length
!= 0) {
777
data = V8::ArrayBufferAllocator()->Allocate(
allocated_length
);
780
V8::ArrayBufferAllocator()->AllocateUninitialized(
allocated_length
);
787
SetupArrayBuffer(isolate, array_buffer, false, data,
allocated_length
);
800
size_t
allocated_length
;
local
[
all
...]
Completed in 402 milliseconds