/frameworks/base/tools/aapt2/text/ |
D | Printer.cpp | 54 if (!io::Copy(out_, " ")) { in Print() 62 if (!io::Copy(out_, str_to_copy)) { in Print() 70 if (!io::Copy(out_, "\n")) { in Print()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
D | voAMRWBEnc.c | 107 Copy(isp_init, cod_state->ispold, M); in Reset_encoder() 108 Copy(isp_init, cod_state->ispold_q, M); in Reset_encoder() 133 Copy(isf_init, cod_state->isfold, M); in Reset_encoder() 244 Copy(st->old_speech, old_speech, L_TOTAL - L_FRAME); in coder() 245 Copy(st->old_wsp, old_wsp, PIT_MAX / OPL_DECIM); in coder() 246 Copy(st->old_exc, old_exc, PIT_MAX + L_INTERPOL); in coder() 259 Copy(st->mem_decim, code, 2 * L_FILT16k); in coder() 270 Copy(st->mem_sig_in, code, 6); in coder() 361 Copy(new_speech, buf, L_FRAME); in coder() 412 Copy(ispnew, st->ispold, M); in coder() [all …]
|
D | decim54.c | 77 Copy(mem, signal, 2 * NB_COEF_DOWN); in Decim_12k8() 79 Copy(sig16k, signal + (2 * NB_COEF_DOWN), lg); in Decim_12k8() 85 Copy(signal + lg, mem, 2 * NB_COEF_DOWN); in Decim_12k8()
|
D | hp6k.c | 62 Copy(mem, x, L_FIR - 1); in Filt_6k_7k() 88 Copy(x + lg, mem, L_FIR - 1); in Filt_6k_7k()
|
D | util.c | 51 void Copy( in Copy() function
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Collections/ |
D | RepeatedField.cs | 218 Array.Copy(array, 0, tmp, 0, array.Length); in EnsureSize() 260 Array.Copy(this.array, 0, array, arrayIndex, count); in CopyTo() 275 Array.Copy(array, index + 1, array, index, count - index - 1); in Remove() 305 Array.Copy(otherRepeatedField.array, 0, array, count, otherRepeatedField.count); in AddRange() 478 Array.Copy(array, index, array, index + 1, count - index); in Insert() 493 Array.Copy(array, index + 1, array, index, count - index - 1); in RemoveAt() 543 Array.Copy(this.array, 0, array, index, count); in ICollection.CopyTo()
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
D | dtx_dec.cpp | 308 Copy(&st->lsf_hist[0], &st->lsf_hist[M*i], M); in dtx_dec_reset() 912 Copy(&st->lsf_hist[st->lsf_hist_ptr], &st->lsf_hist[ptr], M); in dtx_dec() 969 Copy(st->lsf_hist, st->lsf_hist_mean, 80); in dtx_dec() 1038 Copy(st->lsp, st->lsp_old, M); in dtx_dec() 1101 Copy(st->lsp, st->lsp_old, M); in dtx_dec() 1235 Copy(lsf_int, lsf_int_variab, M); in dtx_dec() 1249 Copy(lsf_int, lsfState->past_lsf_q, M); in dtx_dec() 1265 Copy(acoeff, &A_t[0], M + 1); in dtx_dec() 1266 Copy(acoeff, &A_t[M + 1], M + 1); in dtx_dec() 1267 Copy(acoeff, &A_t[2 *(M + 1)], M + 1); in dtx_dec() [all …]
|
D | pstfilt.cpp | 466 Copy(syn, syn_work , L_FRAME); in Post_Filter() 493 Copy(Ap3, h, M + 1); in Post_Filter() 575 Copy(&syn_work[L_FRAME - M], &syn_work[-M], M); in Post_Filter()
|
D | d_plsf.cpp | 203 Copy(mean_lsf_5, &state->past_lsf_q[0], M); in D_plsf_reset()
|
D | d_plsf_3.cpp | 410 Copy( in D_plsf_3() 492 Copy( in Init_D_plsf_3()
|
D | lsp_avg.cpp | 199 Copy(mean_lsf_5, &st->lsp_meanSave[0], M); in lsp_avg_reset()
|
/frameworks/base/tools/aapt2/io/ |
D | Util.cpp | 90 bool Copy(OutputStream* out, InputStream* in) { in Copy() function 109 bool Copy(OutputStream* out, const StringPiece& in) { in Copy() function 128 bool Copy(ZeroCopyOutputStream* out, InputStream* in) { in Copy() function 130 return Copy(&adaptor, in); in Copy()
|
D | Util.h | 48 bool Copy(OutputStream* out, InputStream* in); 49 bool Copy(OutputStream* out, const ::android::StringPiece& in); 50 bool Copy(::google::protobuf::io::ZeroCopyOutputStream* out, InputStream* in);
|
/frameworks/base/tools/aapt2/ |
D | StringPool_test.cpp | 209 std::unique_ptr<uint8_t[]> data = util::Copy(buffer); in TEST() 223 std::unique_ptr<uint8_t[]> data = util::Copy(buffer); in TEST() 267 std::unique_ptr<uint8_t[]> data = util::Copy(buffer); in TEST() 316 std::unique_ptr<uint8_t[]> data = util::Copy(buffer); in TEST() 349 std::unique_ptr<uint8_t[]> data = util::Copy(buffers[0]); in TEST() 355 data = util::Copy(buffers[1]); in TEST() 369 data = util::Copy(buffers2[0]); in TEST() 381 data = util::Copy(buffers2[1]); in TEST()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | reflection_ops_unittest.cc | 58 TEST(ReflectionOpsTest, Copy) { in TEST() argument 63 ReflectionOps::Copy(message, &message2); in TEST() 68 ReflectionOps::Copy(message2, &message2); in TEST() 77 ReflectionOps::Copy(message, &message2); in TEST() 85 ReflectionOps::Copy(message, &message2); in TEST() 90 ReflectionOps::Copy(message, &message2); in TEST()
|
D | reflection_ops.h | 59 static void Copy(const Message& from, Message* to);
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/ |
D | ByteString.cs | 162 ByteArray.Copy(bytes, offset, portion, 0, count); in CopyFrom() 334 ByteArray.Copy(bytes, 0, array, position, bytes.Length); in CopyTo()
|
D | CodedOutputStream.cs | 602 ByteArray.Copy(value, offset, buffer, position, length); in WriteRawBytes() 611 ByteArray.Copy(value, offset, buffer, position, bytesWritten); in WriteRawBytes() 623 ByteArray.Copy(value, offset, buffer, 0, length); in WriteRawBytes()
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/ |
D | copy.h | 78 void Copy(
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
D | copy.cpp | 80 void Copy( in Copy() function
|
/frameworks/layoutlib/create/.settings/ |
D | README.txt | 1 Copy this in eclipse project as a .settings folder at the root.
|
/frameworks/layoutlib/bridge/.settings/ |
D | README.txt | 1 Copy this in eclipse project as a .settings folder at the root.
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | Copy.java | 24 public class Copy extends TestBase { class
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | Copy.java | 29 public class Copy extends TestBase { class
|
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
D | Copy.java | 29 public class Copy extends TestBase { class
|