/external/mesa3d/src/gallium/auxiliary/util/ |
u_staging.h | 43 struct pipe_transfer base; member in struct:util_staging_transfer 45 /* if direct, same as base.resource, otherwise the temporary staging resource */
|
/external/mesa3d/src/gallium/drivers/galahad/ |
glhd_screen.h | 36 struct pipe_screen base; member in struct:galahad_screen
|
/external/mesa3d/src/gallium/drivers/identity/ |
id_context.h | 36 struct pipe_context base; /**< base class */ member in struct:identity_context
|
id_screen.h | 36 struct pipe_screen base; member in struct:identity_screen
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_context.h | 47 struct pipe_context base; member in struct:trace_context
|
/external/mesa3d/src/gallium/state_trackers/dri/drm/ |
dri2_buffer.h | 10 __DRIbuffer base; member in struct:dri2_buffer
|
/external/oprofile/libutil++/ |
path_filter.cpp | 40 string const base = op_basename(str); local 43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base)); 48 cit = find_if(include.begin(), include.end(), fnmatcher(base));
|
/external/v8/test/mjsunit/ |
string-compare-alignment.js | 32 var base = variable 35 var s1 = base.substring(0, 64); 36 var s2 = base.substring(66, 130);
|
toint32.js | 86 var base = Math.pow(2, 64); variable 87 assertEquals(0, toInt32(base + 0)); 88 assertEquals(0, toInt32(base + 1117)); 89 assertEquals(4096, toInt32(base + 2234)); 90 assertEquals(4096, toInt32(base + 3351)); 91 assertEquals(4096, toInt32(base + 4468)); 92 assertEquals(4096, toInt32(base + 5585)); 93 assertEquals(8192, toInt32(base + 6702)); 94 assertEquals(8192, toInt32(base + 7819)); 95 assertEquals(8192, toInt32(base + 8936)) [all...] |
/hardware/qcom/display/msm8960/libqdutils/ |
qdMetaData.cpp | 51 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 53 if (!base) { 54 ALOGE("%s: mmap() failed: Base addr is NULL!", __func__); 57 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 85 if(munmap(base, size)) 86 ALOGE("%s: failed to unmap ptr 0x%x, err %d", __func__, (int)base,
|
/hardware/qcom/display/msm8974/libqdutils/ |
qdMetaData.cpp | 51 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 53 if (!base) { 54 ALOGE("%s: mmap() failed: Base addr is NULL!", __func__); 57 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 88 if(munmap(base, size)) 89 ALOGE("%s: failed to unmap ptr 0x%x, err %d", __func__, (int)base,
|
/hardware/qcom/display/msm8x26/libqdutils/ |
qdMetaData.cpp | 51 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 53 if (!base) { 54 ALOGE("%s: mmap() failed: Base addr is NULL!", __func__); 57 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 85 if(munmap(base, size)) 86 ALOGE("%s: failed to unmap ptr 0x%x, err %d", __func__, (int)base,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/ |
ctor_alloc.pass.cpp | 23 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test 25 explicit test(const test_allocator<int>& a) : base(a) {} 26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} 29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/ |
ctor_alloc.pass.cpp | 23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test 25 explicit test(const test_allocator<int>& a) : base(a) {} 26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} 29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
stripslash.c | 32 char *base = last_component (file); local 38 if (! *base) 39 base = file; 40 base_lim = base + base_len (base);
|
/bionic/libc/upstream-netbsd/libc/stdlib/ |
bsearch.c | 54 * the base up one item past p: e.g., when lim is 5 we change base 65 const char *base = base0; local 75 p = base + (lim >> 1) * size; 80 base = (const char *)p + size;
|
/external/bison/lib/ |
progname.c | 47 const char *base; local 60 base = (slash != NULL ? slash + 1 : argv0); 61 if (base - argv0 >= 7 && strncmp (base - 7, "/.libs/", 7) == 0) 63 argv0 = base; 64 if (strncmp (base, "lt-", 3) == 0) 66 argv0 = base + 3;
|
/external/chromium/base/ |
atomic_sequence_num.h | 9 #include "base/atomicops.h" 10 #include "base/basictypes.h" 12 namespace base { namespace 17 explicit AtomicSequenceNumber(base::LinkerInitialized x) { /* seq_ is 0 */ } 21 base::subtle::NoBarrier_AtomicIncrement(&seq_, 1) - 1); 25 base::subtle::Atomic32 seq_; 29 } // namespace base
|
base_paths_mac.h | 9 // This file declares Mac-specific path keys for the base module. 13 namespace base { namespace 23 } // namespace base
|
/external/chromium/base/debug/ |
stack_trace.cc | 5 #include "base/debug/stack_trace.h" 7 namespace base { namespace 21 } // namespace base
|
/external/chromium/base/i18n/ |
bidi_line_iterator.h | 11 #include "base/basictypes.h" 12 #include "base/string16.h" 14 namespace base { namespace 45 } // namespace base
|
char_iterator_unittest.cc | 5 #include "base/i18n/char_iterator.h" 7 #include "base/utf_string_conversions.h" 10 namespace base { namespace 101 } // namespace base
|
time_formatting.h | 12 #include "base/string16.h" 14 namespace base { namespace 56 } // namespace base
|
/external/chromium/base/mac/ |
foundation_util.h | 12 #include "base/logging.h" 32 namespace base { namespace 105 } // namespace base
|
os_crash_dumps.cc | 5 #include "base/mac/os_crash_dumps.h" 10 #include "base/basictypes.h" 12 namespace base { namespace 45 } // namespace base
|