OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GetBase
(Results
1 - 12
of
12
) sorted by null
/external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_util.h
30
inline void const*
GetBase
(const Tensor* src) { return DMAHelper::base(src); }
31
inline void*
GetBase
(Tensor* dst) { return DMAHelper::base(dst); }
36
void* dst_ptr =
GetBase
(dst_tensor);
37
void const* src_ptr =
GetBase
(&src_tensor);
/external/libchrome/mojo/core/
platform_shared_memory_mapping.cc
95
void* PlatformSharedMemoryMapping::
GetBase
() const {
/external/google-breakpad/src/processor/
stackwalker_selftest.cc
107
virtual uint64_t
GetBase
() const { return 0; }
basic_source_line_resolver_unittest.cc
81
uint64_t
GetBase
() const { return 0x10000; }
fast_source_line_resolver_unittest.cc
92
uint64_t
GetBase
() const { return 0x10000; }
microdump.cc
125
uint64_t MicrodumpMemoryRegion::
GetBase
() const { return base_address_; }
minidump_processor_unittest.cc
111
uint64_t
GetBase
() const { return region_.
GetBase
(); }
postfix_evaluator_unittest.cc
61
virtual uint64_t
GetBase
() const { return 0; }
stackwalker_unittest_utils.h
64
uint64_t
GetBase
() const { return base_address_; }
minidump.cc
[
all
...]
/external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_util.cc
108
void*
GetBase
(const Tensor* src) {
112
void*
GetBase
(Tensor* dst) { return DMAHelper::base(dst); }
160
void* src_ptr =
GetBase
(&tensor);
214
void* src_ptr =
GetBase
(input);
216
void* dst_ptr =
GetBase
(output);
281
void* src_ptr =
GetBase
(gpu_tensor);
283
void* dst_ptr =
GetBase
(cpu_tensor);
327
void* src_ptr =
GetBase
(cpu_tensor);
328
void* dst_ptr =
GetBase
(gpu_tensor);
372
void* ptr = (num_bytes > 0) ?
GetBase
(tensor) : nullptr
[
all
...]
/external/google-breakpad/src/google_breakpad/processor/
minidump.h
215
uint64_t
GetBase
() const;
793
uint64_t
GetBase
() const { return valid_ ? memory_info_.base_address : 0; }
[
all
...]
Completed in 774 milliseconds