HomeSort by relevance Sort by last modified time
    Searched refs:Elem (Results 1 - 25 of 289) 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...]
SkXMLWriter.cpp 56 void SkXMLWriter::doEnd(Elem* elem) {
57 delete elem;
66 Elem** elem = fElems.push(); local
67 *elem = new Elem(name, length);
71 SkXMLWriter::Elem* SkXMLWriter::getEnd() {
72 Elem* elem; local
152 const char* elem = dom.getName(node); local
214 Elem* elem = fElems.top(); local
227 Elem* elem = getEnd(); local
283 Elem* elem = this->getEnd(); local
    [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, "");
  /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()
  /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/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/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];
  /external/clang/lib/AST/
StmtObjC.cpp 21 ObjCForCollectionStmt::ObjCForCollectionStmt(Stmt *Elem, Expr *Collect,
25 SubExprs[ELEM] = Elem;
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/depBase/
dep.go 26 reflect.TypeOf(os.Stdout).Elem()
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/depBase/
dep.go 26 reflect.TypeOf(os.Stdout).Elem()
  /external/llvm/lib/IR/
LLVMContextImpl.cpp 110 FoldingSetIterator<AttributeImpl> Elem = I++;
111 delete &*Elem;
117 FoldingSetIterator<AttributeSetImpl> Elem = I++;
118 delete &*Elem;
124 FoldingSetIterator<AttributeSetNode> Elem = I++;
125 delete &*Elem;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
align.go 186 checkwidth(t.Elem())
190 checkwidth(t.Elem())
204 checkwidth(t.Elem())
214 if t1.Elem().Width >= 1<<16 {
242 if t.Elem() == nil {
253 dowidth(t.Elem())
254 if t.Elem().Width != 0 {
255 cap := (uint64(Thearch.MAXWIDTH) - 1) / uint64(t.Elem().Width)
260 w = t.NumElem() * t.Elem().Width
261 t.Align = t.Elem().Alig
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
align.go 186 checkwidth(t.Elem())
190 checkwidth(t.Elem())
204 checkwidth(t.Elem())
214 if t1.Elem().Width >= 1<<16 {
242 if t.Elem() == nil {
253 dowidth(t.Elem())
254 if t.Elem().Width != 0 {
255 cap := (uint64(Thearch.MAXWIDTH) - 1) / uint64(t.Elem().Width)
260 w = t.NumElem() * t.Elem().Width
261 t.Align = t.Elem().Alig
    [all...]
  /art/test/913-heaps/
heaps.cc 218 for (const std::unique_ptr<Elem>& e : lines_) {
226 class Elem {
228 Elem(const std::string& referrer, const std::string& referree, jlong size, jint length)
230 virtual ~Elem() {}
251 class JNILocalElement : public Elem {
258 : Elem(referrer, referree, size, length) {
292 class StackLocalElement : public Elem {
299 : Elem(referrer, referree, size, length) {
341 class StringElement : public Elem {
348 : Elem(referrer, referree, size, length), string_(string) {
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
set_test.go 83 if p := mv.MapIndex(ValueOf(b1)).Elem().Pointer(); p != uintptr(unsafe.Pointer(b2)) {
129 rv := ValueOf(&r).Elem()
158 sv := ValueOf(&s).Elem()
179 xv := TypeOf(tt.x).Elem()
180 xt := TypeOf(tt.t).Elem()
207 xv := TypeOf(tt.x).Elem()
208 xt := TypeOf(tt.t).Elem()
  /prebuilts/go/linux-x86/src/reflect/
set_test.go 83 if p := mv.MapIndex(ValueOf(b1)).Elem().Pointer(); p != uintptr(unsafe.Pointer(b2)) {
129 rv := ValueOf(&r).Elem()
158 sv := ValueOf(&s).Elem()
179 xv := TypeOf(tt.x).Elem()
180 xt := TypeOf(tt.t).Elem()
207 xv := TypeOf(tt.x).Elem()
208 xt := TypeOf(tt.t).Elem()

Completed in 5911 milliseconds

1 2 3 4 5 6 7 8 91011>>