HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1401 - 1425 of 5077) sorted by null

<<51525354555657585960>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_screen.h 48 struct pipe_screen base; member in struct:llvmpipe_screen
  /external/mesa3d/src/gallium/drivers/svga/
svga_surface.h 45 struct pipe_surface base; member in struct:svga_surface
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.h 56 struct pipe_screen base; member in struct:trace_screen
  /external/mesa3d/src/gallium/state_trackers/gbm/
gbm_gallium_drmint.h 39 struct gbm_drm_device base; member in struct:gbm_gallium_drm_device
51 struct gbm_drm_bo base; member in struct:gbm_gallium_drm_bo
  /external/mesa3d/src/gbm/main/
common_drm.h 39 struct gbm_device base; member in struct:gbm_drm_device
45 struct gbm_bo base; member in struct:gbm_drm_bo
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_bufferobj.h 31 struct gl_buffer_object base; member in struct:nouveau_bufferobj
  /external/qemu/android/
resource.c 18 const unsigned char* base; member in struct:__anon24739
33 return e->base;
  /external/qemu/
dma.h 19 target_phys_addr_t base; member in struct:__anon25219
31 void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base,
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/
Android.mk 23 base := frameworks/av macro
26 ifneq ($(shell grep -c 'off64_t offset' $(base)/drm/libdrmframework/plugins/common/include/IDrmEngine.h), 0)
55 $(base)/include/drm \
56 $(base)/drm/libdrmframework/plugins/common/include \
57 $(base)/drm/libdrmframework/plugins/common/util/include \
58 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/common \
59 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/converter \
60 $(base)/drm/libdrmframework/plugins/forward-lock/internal-format/decoder \
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
FrameBranch.java 18 package android.filterpacks.base;
FrameFetch.java 18 package android.filterpacks.base;
FrameSource.java 18 package android.filterpacks.base;
FrameStore.java 18 package android.filterpacks.base;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameSlotTarget.java 17 package androidx.media.filterpacks.base;
  /frameworks/native/include/binder/
IMemory.h 50 void* base() const { return getBase(); } function in class:android::IMemoryHeap
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_comp_cont_alloc.pass.cpp 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
36 typedef typename base::container_type container_type;
37 typedef typename base::value_compare value_compare;
39 explicit test(const test_allocator<int>& a) : base(a) {}
41 : base(comp, a) {}
43 const test_allocator<int>& a) : base(comp, c, a) {}
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
51 using base::c;
ctor_comp_rcont_alloc.pass.cpp 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
36 typedef typename base::container_type container_type;
37 typedef typename base::value_compare value_compare;
39 explicit test(const test_allocator<int>& a) : base(a) {}
41 : base(comp, a) {}
43 const test_allocator<int>& a) : base(comp, c, a) {}
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
51 using base::c;
ctor_copy_alloc.pass.cpp 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
35 typedef typename base::container_type container_type;
36 typedef typename base::value_compare value_compare;
38 explicit test(const test_allocator<int>& a) : base(a) {}
40 : base(comp, c, a) {}
42 const test_allocator<int>& a) : base(comp, c, a) {}
43 test(const test& q, const test_allocator<int>& a) : base(q, a) {}
46 using base::c;
ctor_move_alloc.pass.cpp 38 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
39 typedef typename base::container_type container_type;
40 typedef typename base::value_compare value_compare;
42 explicit test(const test_allocator<int>& a) : base(a) {}
44 : base(comp, c, a) {}
46 const test_allocator<int>& a) : base(comp, c, a) {}
48 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
49 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
52 using base::c;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_container_alloc.pass.cpp 35 typedef std::queue<int, C> base; typedef in struct:test
37 explicit test(const test_allocator<int>& a) : base(a) {}
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
41 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
ctor_queue_alloc.pass.cpp 36 typedef std::queue<T, C> base; typedef in struct:test
38 typedef typename base::container_type container_type;
40 explicit test(const allocator_type& a) : base(a) {}
41 test(const container_type& c, const allocator_type& a) : base(c, a) {}
42 test(const test& q, const allocator_type& a) : base(q, a) {}
ctor_rcontainer_alloc.pass.cpp 39 typedef std::queue<T, C> base; typedef in struct:test
41 typedef typename base::container_type container_type;
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
ctor_rqueue_alloc.pass.cpp 39 typedef std::queue<T, C> base; typedef in struct:test
41 typedef typename base::container_type container_type;
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_container_alloc.pass.cpp 35 typedef std::stack<int, C> base; typedef in struct:test
37 explicit test(const test_allocator<int>& a) : base(a) {}
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
41 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
ctor_copy_alloc.pass.cpp 36 typedef std::stack<T, C> base; typedef in struct:test
38 typedef typename base::container_type container_type;
40 explicit test(const allocator_type& a) : base(a) {}
41 test(const container_type& c, const allocator_type& a) : base(c, a) {}
42 test(const test& q, const allocator_type& a) : base(q, a) {}

Completed in 205 milliseconds

<<51525354555657585960>>