/system/security/keystore-engine/ |
D | rsa_meth.cpp | 44 int keystore_rsa_priv_enc(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, in keystore_rsa_priv_enc() argument 46 ALOGV("keystore_rsa_priv_enc(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding); in keystore_rsa_priv_enc() 57 if (!RSA_padding_add_PKCS1_type_1(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc() 62 if (!RSA_padding_add_X931(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc() 67 if (!RSA_padding_add_none(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc() 116 int keystore_rsa_priv_dec(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, in keystore_rsa_priv_dec() argument 118 ALOGV("keystore_rsa_priv_dec(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding); in keystore_rsa_priv_dec() 139 int32_t ret = service->sign(String16(reinterpret_cast<const char*>(key_id)), from, in keystore_rsa_priv_dec()
|
/system/core/libpixelflinger/codeflinger/tinyutils/ |
D | VectorImpl.cpp | 303 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local 305 _do_copy(dest, from, mCount-where); in _grow() 316 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local 317 _do_move_forward(to, from, s); in _grow() 355 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local 357 _do_copy(dest, from, mCount-(where+amount)); in _shrink() 369 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local 370 _do_move_backward(to, from, s); in _shrink() 396 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument 399 do_copy(dest, from, num); in _do_copy() [all …]
|
D | VectorImpl.h | 97 virtual void do_copy(void* dest, const void* from, size_t num) const = 0; 99 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0; 100 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0; 118 inline void _do_copy(void* dest, const void* from, size_t num) const; 120 inline void _do_move_forward(void* dest, const void* from, size_t num) const; 121 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
|
D | SortedVector.h | 128 virtual void do_copy(void* dest, const void* from, size_t num) const; 130 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 131 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 254 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument 255 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy() 264 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument 265 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward() 269 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument 270 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
|
D | Vector.h | 165 virtual void do_copy(void* dest, const void* from, size_t num) const; 167 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 168 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 328 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument 329 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy() 338 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument 339 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward() 343 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument 344 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
|
/system/core/include/utils/ |
D | SortedVector.h | 129 virtual void do_copy(void* dest, const void* from, size_t num) const; 131 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 132 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 253 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { 254 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); 263 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { 264 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); 268 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { 269 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
|
D | VectorImpl.h | 104 virtual void do_copy(void* dest, const void* from, size_t num) const = 0; 106 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0; 107 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0; 115 inline void _do_copy(void* dest, const void* from, size_t num) const; 117 inline void _do_move_forward(void* dest, const void* from, size_t num) const; 118 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
|
D | Vector.h | 204 virtual void do_copy(void* dest, const void* from, size_t num) const; 206 virtual void do_move_forward(void* dest, const void* from, size_t num) const; 207 virtual void do_move_backward(void* dest, const void* from, size_t num) const; 399 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { 400 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); 409 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { 410 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); 414 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { 415 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
|
/system/extras/tests/mmc_tracepoints/ |
D | README | 1 The code in this directory is used to process data from the mmc tracepoints 19 The mmc_trace_reduce script will take the output from the kernel, and convert it 24 The file mmc_trace_sample_data contains sample mmc trace data from a Nexus 10. 25 It includes read, write and discard entries. The discard entries came from
|
/system/core/sh/ |
D | mystring.c | 79 scopyn(const char *from, char *to, int size) in scopyn() argument 83 if ((*to++ = *from++) == '\0') in scopyn()
|
D | nodes.c.pat | 7 * This code is derived from software contributed to Berkeley by 19 * may be used to endorse or promote products derived from this software 51 pointer funcblock; /* block to allocate function from */ 52 char *funcstring; /* block to allocate strings from */
|
D | NOTICE | 4 This code is derived from software contributed to Berkeley by 16 may be used to endorse or promote products derived from this software
|
D | redir.c | 377 copyfd(int from, int to) in copyfd() argument 381 newfd = fcntl(from, F_DUPFD, to); in copyfd() 386 error("%d: %s", from, strerror(errno)); in copyfd()
|
/system/core/libutils/ |
D | VectorImpl.cpp | 396 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local 398 _do_copy(dest, from, mCount-where); in _grow() 407 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local 409 _do_move_forward(to, from, mCount - where); in _grow() 448 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local 450 _do_copy(dest, from, new_size - where); in _shrink() 461 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local 462 _do_move_backward(to, from, new_size - where); in _shrink() 486 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument 489 do_copy(dest, from, num); in _do_copy() [all …]
|
/system/core/libsparse/ |
D | backed_block.c | 144 void backed_block_list_move(struct backed_block_list *from, in backed_block_list_move() argument 151 start = from->data_blocks; in backed_block_list_move() 163 from->last_used = NULL; in backed_block_list_move() 165 if (from->data_blocks == start) { in backed_block_list_move() 166 from->data_blocks = end->next; in backed_block_list_move() 168 for (bb = from->data_blocks; bb; bb = bb->next) { in backed_block_list_move()
|
D | sparse.c | 223 static struct backed_block *move_chunks_up_to_len(struct sparse_file *from, in move_chunks_up_to_len() argument 241 start = backed_block_iter_new(from->backed_block_list); in move_chunks_up_to_len() 259 backed_block_split(from->backed_block_list, bb, len - file_len); in move_chunks_up_to_len() 269 backed_block_list_move(from->backed_block_list, in move_chunks_up_to_len()
|
/system/extras/tests/bionic/libc/ |
D | README.TXT | 4 these tests come from the GNU C Library, and are licensed under the 23 Contains tests that come from the GNU C Library. However, they can
|
/system/core/toolbox/ |
D | NOTICE | 16 derived from this software without specific prior written 47 derived from this software without specific prior written 78 derived from this software without specific prior written 99 This code is derived from software contributed to Berkeley by 101 This code is derived from software contributed to Berkeley by 104 This code is derived from software contributed to Berkeley by 116 may be used to endorse or promote products derived from this software 135 This code is derived from software contributed to Berkeley by 147 may be used to endorse or promote products derived from this software 166 This code is derived from software contributed to Berkeley by [all …]
|
/system/media/camera/docs/ |
D | CameraCharacteristicsTest.mako | 21 * Generated automatically from system/media/camera/docs/CameraCharacteristicsTest.mako. 68 assertNotNull(String.format("Can't get camera characteristics from: ID %s", ids[i]), 83 assertNotNull(String.format("Can't get camera characteristics keys from: ID %s",
|
/system/core/logcat/ |
D | event.logtags | 4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the 19 # The data type is a number from the following values: 25 # The data unit is a number taken from the following list: 34 # TODO: generate ".java" and ".h" files with integer constants from this file.
|
/system/core/sh/funcs/ |
D | suspend | 5 # This code is derived from software contributed to Berkeley by 21 # may be used to endorse or promote products derived from this software
|
D | newgrp | 5 # This code is derived from software contributed to Berkeley by 21 # may be used to endorse or promote products derived from this software
|
D | login | 5 # This code is derived from software contributed to Berkeley by 21 # may be used to endorse or promote products derived from this software
|
D | cmv | 5 # This code is derived from software contributed to Berkeley by 21 # may be used to endorse or promote products derived from this software
|
/system/extras/tests/sdcard/ |
D | README | 26 Download it from the Gnuplot.py web site. Extract to a temp 59 To plot the result from the profiler:
|