OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PODType
(Results
1 - 3
of
3
) sorted by null
/prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
ios.cpp
89
// array is a pointer to N elements of type
PODType
. Expands the array,
94
template <class
PODType
>
95
static pair<
PODType
*, size_t>
96
_Stl_expand_array(
PODType
* __array, size_t N, int index) {
99
PODType
* new_array
100
= __STATIC_CAST(
PODType
*,realloc(__array, new_N * sizeof(
PODType
)));
102
fill(new_array + N, new_array + new_N,
PODType
());
103
return pair<
PODType
*, size_t>(new_array, new_N);
106
return pair<
PODType
*, size_t>(__STATIC_CAST(PODType*,0), 0)
[
all
...]
/prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
ios.cpp
89
// array is a pointer to N elements of type
PODType
. Expands the array,
94
template <class
PODType
>
95
static pair<
PODType
*, size_t>
96
_Stl_expand_array(
PODType
* __array, size_t N, int index) {
99
PODType
* new_array
100
= __STATIC_CAST(
PODType
*,realloc(__array, new_N * sizeof(
PODType
)));
102
fill(new_array + N, new_array + new_N,
PODType
());
103
return pair<
PODType
*, size_t>(new_array, new_N);
106
return pair<
PODType
*, size_t>(__STATIC_CAST(PODType*,0), 0)
[
all
...]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.dtor/
dtor.pass.cpp
21
struct
PODType
{
51
typedef
PODType
T;
Completed in 3182 milliseconds