/system/core/libutils/include/utils/ |
D | Timers.h | 68 static CONSTEXPR inline nsecs_t s2ns(nsecs_t v) {return seconds_to_nanoseconds(v);} in s2ns() 69 static CONSTEXPR inline nsecs_t ms2ns(nsecs_t v) {return milliseconds_to_nanoseconds(v);} in ms2ns() 70 static CONSTEXPR inline nsecs_t us2ns(nsecs_t v) {return microseconds_to_nanoseconds(v);} in us2ns() 71 static CONSTEXPR inline nsecs_t ns2s(nsecs_t v) {return nanoseconds_to_seconds(v);} in ns2s() 72 static CONSTEXPR inline nsecs_t ns2ms(nsecs_t v) {return nanoseconds_to_milliseconds(v);} in ns2ms() 73 static CONSTEXPR inline nsecs_t ns2us(nsecs_t v) {return nanoseconds_to_microseconds(v);} in ns2us() 75 static CONSTEXPR inline nsecs_t seconds(nsecs_t v) { return s2ns(v); } in seconds() 76 static CONSTEXPR inline nsecs_t milliseconds(nsecs_t v) { return ms2ns(v); } in milliseconds() 77 static CONSTEXPR inline nsecs_t microseconds(nsecs_t v) { return us2ns(v); } in microseconds()
|
D | ByteOrder.h | 41 static inline uint32_t android_swap_long(uint32_t v) in android_swap_long() 46 static inline uint16_t android_swap_short(uint16_t v) in android_swap_short()
|
/system/tools/aidl/ |
D | type_java.cpp | 61 void Type::WriteToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, in WriteToParcel() 69 void Type::CreateFromParcel(StatementBlock* addTo, Variable* v, in CreateFromParcel() 77 void Type::ReadFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, in ReadFromParcel() 111 void BasicType::WriteToParcel(StatementBlock* addTo, Variable* v, in WriteToParcel() 116 void BasicType::CreateFromParcel(StatementBlock* addTo, Variable* v, in CreateFromParcel() 132 void BasicArrayType::WriteToParcel(StatementBlock* addTo, Variable* v, in WriteToParcel() 137 void BasicArrayType::CreateFromParcel(StatementBlock* addTo, Variable* v, in CreateFromParcel() 142 void BasicArrayType::ReadFromParcel(StatementBlock* addTo, Variable* v, in ReadFromParcel() 155 void FileDescriptorType::WriteToParcel(StatementBlock* addTo, Variable* v, in WriteToParcel() 160 void FileDescriptorType::CreateFromParcel(StatementBlock* addTo, Variable* v, in CreateFromParcel() [all …]
|
D | generate_java_binder.cpp | 288 Variable* v, Variable* parcel, in generate_new_array() 302 Variable* v, Variable* parcel, int flags) { in generate_write_to_parcel() 307 Variable* v, Variable* parcel, in generate_create_from_parcel() 370 Variable* v = stubArgs.Get(t); in generate_stub_code() local 462 Variable* v = stubArgs.Get(i++); in generate_stub_code() local 608 Variable* v = in generate_proxy_method() local 653 Variable* v = in generate_proxy_method() local
|
D | generate_java.cpp | 44 Variable* v = new Variable( in Get() local
|
/system/chre/util/tests/ |
D | heap_test.cc | 11 DynamicVector<int> v; in TEST() local 17 DynamicVector<int> v; in TEST() local 23 DynamicVector<int> v; in TEST() local 54 DynamicVector<int> v; in TEST() local 63 DynamicVector<int> v; in TEST() local 102 FixedSizeVector<int, 16> v; in TEST() local
|
/system/libhidl/transport/include/hidl/ |
D | ConcurrentMap.h | 33 void set(K &&k, V &&v) { in set() 53 size_type eraseIfEqual(const K& k, const V& v) { in eraseIfEqual() 69 void setLocked(K&& k, V&& v) { mMap[std::forward<K>(k)] = std::forward<V>(v); } in setLocked() 70 void setLocked(K&& k, const V& v) { mMap[std::forward<K>(k)] = v; } in setLocked()
|
/system/core/libpixelflinger/ |
D | buffer.cpp | 119 uint32_t v = 0; in read_pixel() local 136 uint16_t v = *(reinterpret_cast<uint16_t*>(s->data) + (x + (s->stride * y))); in readRGB565() local 150 uint32_t v = *(reinterpret_cast<uint32_t*>(s->data) + (x + (s->stride * y))); in readABGR8888() local 178 uint32_t v = 0; in write_pixel() local 252 uint32_t ggl_expand(uint32_t v, int sbits, int dbits) in ggl_expand() 278 uint32_t extract(uint32_t v, int h, int l, int bits) in extract() 291 uint32_t expand(uint32_t v, int sbits, int dbits) in expand() 323 uint32_t downshift_component( uint32_t in, uint32_t v, in downshift_component()
|
/system/libhidl/base/include/hidl/ |
D | Status.h | 194 Return(T v) : details::return_status(), mVal{v} {} in Return() 219 Return(sp<T> v) : details::return_status(), mVal{v} {} in Return() 220 Return(T* v) : details::return_status(), mVal{v} {} in Return() 222 template<typename U> Return(sp<U> v) : details::return_status(), mVal{v} {} in Return() 223 template<typename U> Return(U* v) : details::return_status(), mVal{v} {} in Return()
|
/system/media/camera/tests/ |
D | camera_metadata_tests_fake_vendor.h | 130 const char *get_fakevendor_section_name(const vendor_tag_ops_t *v, in get_fakevendor_section_name() 140 const char *get_fakevendor_tag_name(const vendor_tag_ops_t *v, in get_fakevendor_tag_name() 151 int get_fakevendor_tag_type(const vendor_tag_ops_t *v, in get_fakevendor_tag_type() 162 int get_fakevendor_tag_count(const vendor_tag_ops_t *v) { in get_fakevendor_tag_count() 176 void get_fakevendor_tags(const vendor_tag_ops_t *v, uint32_t *tag_array) { in get_fakevendor_tags()
|
/system/libvintf/ |
D | KernelConfigTypedValue.cpp | 38 KernelConfigTypedValue::KernelConfigTypedValue(KernelConfigIntValue v){ in KernelConfigTypedValue() 43 KernelConfigTypedValue::KernelConfigTypedValue(KernelConfigRangeValue &&v){ in KernelConfigTypedValue()
|
D | parse_string.cpp | 50 for (const T &v : objs) { in operator <<() local 62 std::vector<std::string> v = SplitString(s, ','); in parse() local 214 std::vector<std::string> v = SplitString(s, '.'); in parse() local 234 std::vector<std::string> v = SplitString(s, '-'); in parse() local 264 std::vector<std::string> v = SplitString(s, '-'); in parse() local 295 std::vector<std::string> v = SplitString(s, '.'); in parse() local 348 std::vector<std::string> v = SplitString(s, '/'); in parse() local 373 std::vector<std::string> v = SplitString(s, '/'); in parse() local
|
D | ManifestHal.cpp | 28 for (const auto &v : versions) { in isValid() local 52 for (const auto& v : versions) { in forEachInstance() local
|
/system/extras/libfec/ |
D | fec_verity.cpp | 193 verity_info *v = &f->verity; in verify_tree() local 335 verity_info *v = &f->verity; in parse_table() local 493 verity_info *v = &f->verity; in rewrite_metadata() local 557 verity_info *v = &f->verity; in verity_parse_header() local 646 verity_info *v = &f->verity; in fec_verity_set_status() local
|
/system/media/audio_utils/ |
D | roundup.c | 19 unsigned roundup(unsigned v) in roundup()
|
D | fixedfft.cpp | 108 void fixed_fft(int n, int32_t *v) in fixed_fft() 145 void fixed_fft_real(int n, int32_t *v) in fixed_fft_real()
|
D | minifloat.c | 35 gain_minifloat_t gain_from_float(float v) in gain_from_float()
|
/system/core/base/include/android-base/ |
D | memory.h | 34 static inline void put_unaligned(void* address, T v) { in put_unaligned()
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 35 inline uint32_t GGL_RGBA_TO_HOST(uint32_t v) { in GGL_RGBA_TO_HOST() 38 inline uint32_t GGL_HOST_TO_RGBA(uint32_t v) { in GGL_HOST_TO_RGBA()
|
/system/extras/tests/crypto/ |
D | get_dm_versions.c | 29 struct dm_target_versions *v; in main() local
|
/system/libhwbinder/vts/performance/ |
D | PerfTest.h | 50 int send(const T& v) { in send() 55 int recv(T& v) { in recv()
|
D | Benchmark_throughput.cpp | 79 template<typename T> void send(const T& v) { in send() 83 template<typename T> void recv(T& v) { in recv() 287 void wait_all(vector<Pipe>& v) { in wait_all() 293 void signal_all(vector<Pipe>& v) { in signal_all()
|
/system/bt/vendor_libs/test_vendor_lib/src/ |
D | acl_packet.cc | 52 uint64_t v = value; in AddPayloadOctets() local
|
/system/core/libpixelflinger/codeflinger/ |
D | blending.cpp | 475 const integer_t& v, in mul_factor() 566 const integer_t& v, in mul_factor_add() 656 void GGLAssembler::component_sat(const component_t& v) in component_sat()
|
/system/extras/pssbench/ |
D | main.cpp | 39 int64_t v; in get_pss() local
|