HomeSort by relevance Sort by last modified time
    Searched refs:Elem (Results 1 - 25 of 367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/delibs/decpp/
deArrayUtil.hpp 33 template <int LastElementIndex, int Size, typename Elem>
34 const Elem& getSizedArrayElement (const Elem (&array)[Size], typename de::meta::EnableIf<int, LastElementIndex==Size>::Type offset)
41 template <int Size, typename Elem>
42 const Elem& getArrayElement (const Elem (&array)[Size], int offset)
  /bionic/libc/bionic/
malloc_info.cpp 22 class __LIBC_HIDDEN__ Elem {
25 explicit Elem(FILE* fp, const char* name,
41 ~Elem() noexcept {
56 DISALLOW_COPY_AND_ASSIGN(Elem);
65 Elem root(fp, "malloc", "version=\"jemalloc-1\"");
71 Elem arena_elem(fp, "heap", "nr=\"%d\"", i);
73 Elem(fp, "allocated-large").contents("%zu", mi.ordblks);
74 Elem(fp, "allocated-huge").contents("%zu", mi.uordblks);
75 Elem(fp, "allocated-bins").contents("%zu", mi.fsmblks);
81 Elem bin_elem(fp, "bin", "nr=\"%d\"", j)
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 116 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
135 returnValue = (((uint32)(Elem)) << 24) |
164 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
174 returnValue = (((uint16)(Elem)) << 8) |
200 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
207 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
212 returnValue = (((uint32)(Elem)) << 16) |
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
reflect_test.go 17 v.Elem().Set(reflect.ValueOf(1))
20 _ = v.Elem().Int()
29 v.Elem().Set(reflect.ValueOf(1))
32 v.Elem().Set(reflect.ValueOf(2))
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
reflect_test.go 17 v.Elem().Set(reflect.ValueOf(1))
20 _ = v.Elem().Int()
29 v.Elem().Set(reflect.ValueOf(1))
32 v.Elem().Set(reflect.ValueOf(2))
  /external/skia/src/xml/
SkXMLWriter.h 30 void startElement(const char elem[]);
31 void startElementLen(const char elem[], size_t length);
37 virtual void onStartElementLen(const char elem[], size_t length) = 0;
42 struct Elem {
43 Elem(const char name[], size_t len)
52 void doEnd(Elem* elem);
54 Elem* getEnd();
56 SkTDArray<Elem*> fElems;
71 void onStartElementLen(const char elem[], size_t length) override
    [all...]
  /external/skqp/src/xml/
SkXMLWriter.h 30 void startElement(const char elem[]);
31 void startElementLen(const char elem[], size_t length);
37 virtual void onStartElementLen(const char elem[], size_t length) = 0;
42 struct Elem {
43 Elem(const char name[], size_t len)
52 void doEnd(Elem* elem);
54 Elem* getEnd();
56 SkTDArray<Elem*> fElems;
71 void onStartElementLen(const char elem[], size_t length) override
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
move.pass.cpp 51 template <class Elem>
53 using Tup = std::tuple<Elem>;
65 static_assert(std::is_constructible<Tup, Elem&&>::value, "");
66 static_assert(!std::is_constructible<Tup, Elem const&>::value, "");
67 static_assert(!std::is_constructible<Tup, Elem&>::value, "");
78 static_assert(std::is_constructible<Tup, Tag, Alloc, Elem&&>::value, "");
79 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem const&>::value, "");
80 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem &>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
move.pass.cpp 51 template <class Elem>
53 using Tup = std::tuple<Elem>;
65 static_assert(std::is_constructible<Tup, Elem&&>::value, "");
66 static_assert(!std::is_constructible<Tup, Elem const&>::value, "");
67 static_assert(!std::is_constructible<Tup, Elem&>::value, "");
78 static_assert(std::is_constructible<Tup, Tag, Alloc, Elem&&>::value, "");
79 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem const&>::value, "");
80 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem &>::value, "");
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/plugin2/
plugin2.go 36 v := reflect.ValueOf(&h).Elem().Field(0)
37 newval := reflect.New(v.Type().Elem())
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/plugin2/
plugin2.go 36 v := reflect.ValueOf(&h).Elem().Field(0)
37 newval := reflect.New(v.Type().Elem())
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
buffer_sequence_adapter.hpp 229 template <typename Buffer, typename Elem>
230 class buffer_sequence_adapter<Buffer, boost::array<Elem, 2> >
235 const boost::array<Elem, 2>& buffer_sequence)
258 static bool all_empty(const boost::array<Elem, 2>& buffer_sequence)
264 static void validate(const boost::array<Elem, 2>& buffer_sequence)
270 static Buffer first(const boost::array<Elem, 2>& buffer_sequence)
282 template <typename Buffer, typename Elem>
283 class buffer_sequence_adapter<Buffer, std::array<Elem, 2> >
288 const std::array<Elem, 2>& buffer_sequence)
311 static bool all_empty(const std::array<Elem, 2>& buffer_sequence
    [all...]
  /build/blueprint/proptools/
clone.go 26 CopyProperties(result.Elem(), structValue)
55 if field.Type.Elem().Kind() != reflect.String {
73 srcFieldValue = srcFieldValue.Elem()
79 if srcFieldValue.Type().Elem().Kind() != reflect.Struct {
84 if dstFieldValue.IsNil() || dstFieldValue.Elem().Type() != srcFieldValue.Type() {
87 newValue := reflect.New(srcFieldValue.Type()).Elem()
92 dstFieldValue = dstFieldValue.Elem()
101 srcFieldValue := srcFieldValue.Elem()
107 CopyProperties(dstFieldValue.Elem(), srcFieldValue)
119 newValue.Elem().Set(srcFieldValue
    [all...]
typeequal.go 38 v1 = v1.Elem()
39 v2 = v2.Elem()
46 if v1.Type().Elem().Kind() != reflect.Struct {
57 v1 = v1.Elem()
58 v2 = v2.Elem()
90 v = v.Elem()
  /external/golang-protobuf/proto/
clone.go 50 out := reflect.New(in.Type().Elem())
52 mergeStruct(out.Elem(), in.Elem())
74 mergeStruct(out.Elem(), in.Elem())
136 if out.IsNil() || out.Elem().Type() != in.Elem().Type() {
137 out.Set(reflect.New(in.Elem().Elem().Type())) // interface -> *T -> T -> new(T)
139 mergeAny(out.Elem(), in.Elem(), false, nil
    [all...]
  /frameworks/base/core/proto/android/util/
log.proto 65 message Elem {
86 repeated Elem elems = 7;
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/plugin1/
plugin1.go 49 v := reflect.ValueOf(&h).Elem().Field(0)
50 newval := reflect.New(v.Type().Elem())
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/exe/
exe.go 29 reflect.TypeOf(os.Stdout).Elem()
38 sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
bootstrap.go 16 tmp := reflect.New(val.Type().Elem()).Elem()
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/plugin1/
plugin1.go 49 v := reflect.ValueOf(&h).Elem().Field(0)
50 newval := reflect.New(v.Type().Elem())
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/exe/
exe.go 29 reflect.TypeOf(os.Stdout).Elem()
38 sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
bootstrap.go 16 tmp := reflect.New(val.Type().Elem()).Elem()
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug461.go 19 v = v.Elem().Field(0)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug461.go 19 v = v.Elem().Field(0)
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
RunQueue.h 56 Elem* e = &array_[front & kMask];
71 Elem* e = &array_[(front - 1) & kMask];
88 Elem* e = &array_[(back - 1) & kMask];
107 Elem* e = &array_[back & kMask];
131 Elem* e = &array_[mid & kMask];
183 struct Elem {
202 Elem array_[kSize];

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>