HomeSort by relevance Sort by last modified time
    Searched refs:temp_vector (Results 1 - 4 of 4) sorted by null

  /system/security/keystore/
KeyAttestationApplicationId.cpp 39 std::unique_ptr<std::vector<std::unique_ptr<KeyAttestationPackageInfo>>> temp_vector; local
40 auto rc = parcel->readParcelableVector(&temp_vector);
42 packageInfos_.reset(temp_vector.release());
KeyAttestationPackageInfo.cpp 47 std::unique_ptr<SignaturesVector> temp_vector;
48 rc = parcel->readParcelableVector(&temp_vector);
50 signatures_.reset(temp_vector.release());
  /external/webrtc/webrtc/modules/audio_coding/neteq/
accelerate.cc 71 // Copy the |peak_index| starting at 15 ms to |temp_vector|.
72 AudioMultiVector temp_vector(num_channels_);
73 temp_vector.PushBackInterleaved(&input[fs_mult_120 * num_channels_],
75 // Cross-fade |temp_vector| onto the end of |output|.
76 output->CrossFade(temp_vector, peak_index);
preemptive_expand.cc 81 // Copy the last |peak_index| samples up to 15 ms to |temp_vector|.
82 AudioMultiVector temp_vector(num_channels_);
83 temp_vector.PushBackInterleaved(
86 // Cross-fade |temp_vector| onto the end of |output|.
87 output->CrossFade(temp_vector, peak_index);

Completed in 81 milliseconds