Home
last modified time | relevance | path

Searched full:late (Results 1 – 25 of 1252) sorted by relevance

12345678910>>...51

/external/webrtc/modules/audio_device/linux/
Daudio_mixer_manager_alsa_linux.cc16 // Accesses ALSA functions through our late-binding symbol table instead of
19 #define LATE(sym) \ macro
68 LATE(snd_mixer_free)(_outputMixerHandle); in CloseSpeakerLocked()
71 << LATE(snd_strerror)(errVal); in CloseSpeakerLocked()
73 errVal = LATE(snd_mixer_detach)(_outputMixerHandle, _outputMixerStr); in CloseSpeakerLocked()
76 << LATE(snd_strerror)(errVal); in CloseSpeakerLocked()
78 errVal = LATE(snd_mixer_close)(_outputMixerHandle); in CloseSpeakerLocked()
104 LATE(snd_mixer_free)(_inputMixerHandle); in CloseMicrophoneLocked()
107 << LATE(snd_strerror)(errVal); in CloseMicrophoneLocked()
111 errVal = LATE(snd_mixer_detach)(_inputMixerHandle, _inputMixerStr); in CloseMicrophoneLocked()
[all …]
Daudio_mixer_manager_pulse_linux.cc21 // Accesses Pulse functions through our late-binding symbol table instead of
24 #define LATE(sym) \ macro
34 LATE(pa_threaded_mainloop_lock)(pa_mainloop_); in AutoPulseLock()
37 ~AutoPulseLock() { LATE(pa_threaded_mainloop_unlock)(pa_mainloop_); } in ~AutoPulseLock()
214 (LATE(pa_stream_get_state)(_paPlayStream) != PA_STREAM_UNCONNECTED)) { in SetSpeakerVolume()
219 const pa_sample_spec* spec = LATE(pa_stream_get_sample_spec)(_paPlayStream); in SetSpeakerVolume()
227 LATE(pa_cvolume_set)(&cVolumes, spec->channels, volume); in SetSpeakerVolume()
230 paOperation = LATE(pa_context_set_sink_input_volume)( in SetSpeakerVolume()
231 _paContext, LATE(pa_stream_get_index)(_paPlayStream), &cVolumes, in SetSpeakerVolume()
238 LATE(pa_operation_unref)(paOperation); in SetSpeakerVolume()
[all …]
Daudio_device_alsa_linux.cc24 // Accesses ALSA functions through our late-binding symbol table instead of
27 #define LATE(sym) \ macro
31 // Redefine these here to be able to do late-binding
36 LATE(snd_ctl_card_info_sizeof)()); \
37 memset(*ptr, 0, LATE(snd_ctl_card_info_sizeof)()); \
43 *pInfo = (snd_pcm_info_t*)__builtin_alloca(LATE(snd_pcm_info_sizeof)()); \
44 memset(*pInfo, 0, LATE(snd_pcm_info_sizeof)()); \
764 LATE(snd_pcm_close)(_handlePlayout); in InitPlayoutLocked()
769 << LATE(snd_strerror)(errVal); in InitPlayoutLocked()
780 errVal = LATE(snd_pcm_open)(&_handlePlayout, deviceName, in InitPlayoutLocked()
[all …]
Daudio_device_pulse_linux.cc26 // Accesses Pulse functions through our late-binding symbol table instead of
29 #define LATE(sym) \ macro
650 LATE(pa_context_get_sink_info_list)(_paContext, PaSinkInfoCallback, this); in PlayoutDevices()
770 paOperation = LATE(pa_context_get_source_info_list)( in RecordingDevices()
872 LATE(pa_stream_new)(_paContext, "playStream", &playSampleSpec, NULL); in InitPlayout()
877 << LATE(pa_context_errno)(_paContext); in InitPlayout()
891 << LATE(pa_stream_get_state)(_playStream); in InitPlayout()
903 if (LATE(pa_context_get_protocol_version)(_paContext) >= in InitPlayout()
908 const pa_sample_spec* spec = LATE(pa_stream_get_sample_spec)(_playStream); in InitPlayout()
914 size_t bytesPerSec = LATE(pa_bytes_per_second)(spec); in InitPlayout()
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/tests/no-applyshim/
Dcustom-style-late.html25 <template id="late">
26 <custom-style class="late-style">
29 --late: 2px solid red;
35 <template id="x-late">
39 border: var(--late);
42 <div>late</div>
52 <x-late></x-late>
62 test('late custom-style updates elements', function(done) {
63 var lateTemplate = document.querySelector('template#late');
65 var inner = host.shadowRoot.querySelector('x-late');
[all …]
Dcustom-style-only.html40 border: var(--late);
45 <template id="late">
46 <custom-style class="late-style">
49 --late: 2px solid red;
63 test('late custom-style updates styling', function(done) {
64 var lateTemplate = document.querySelector('template#late');
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/tests/no-scopingshim/
Dcustom-style-late.html26 <template id="late">
27 <custom-style class="late-style">
30 --late: {
38 <template id="x-late">
42 @apply --late;
45 <div>late</div>
55 <x-late></x-late>
65 test('late custom-style updates elements', function(done) {
66 var lateTemplate = document.querySelector('template#late');
68 var inner = host.shadowRoot.querySelector('x-late');
[all …]
Dcustom-style-only.html39 @apply --late;
44 <template id="late">
45 <custom-style class="late-style">
48 --late: {
64 test('late custom-style updates styling', function(done) {
65 var lateTemplate = document.querySelector('template#late');
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/tests/
Dcustom-style-late.html36 <template id="late">
37 <custom-style class="late-style">
40 --late: {
48 <template id="x-late">
52 @apply --late;
55 <div>late</div>
65 <x-late></x-late>
75 test('late custom-style updates elements', function(done) {
76 var lateTemplate = document.querySelector('template#late');
78 var inner = host.shadowRoot.querySelector('x-late');
[all …]
Dcustom-style-only.html39 @apply --late;
44 <template id="late">
45 <custom-style class="late-style">
48 --late: {
64 test('late custom-style updates styling', function(done) {
65 var lateTemplate = document.querySelector('template#late');
Dlazy-init.html31 :host > late-client {
35 <late-client></late-client>
37 <template id="late-client">
133 test('Late child element is eventually correct', function() {
134 customElements.define('late-client', class extends LateClient{});
139 const inner = host.shadowRoot.querySelector('late-client');
/external/tcpdump/tests/
Dsflow_multiple_counter_30_pdus.out13 deferred 0, late collision 0, excessive collision 0, mac trans error 0
25 deferred 0, late collision 0, excessive collision 0, mac trans error 0
37 deferred 0, late collision 0, excessive collision 0, mac trans error 0
49 deferred 0, late collision 0, excessive collision 0, mac trans error 0
61 deferred 0, late collision 0, excessive collision 0, mac trans error 0
73 deferred 0, late collision 0, excessive collision 0, mac trans error 0
85 deferred 0, late collision 0, excessive collision 0, mac trans error 0
99 deferred 0, late collision 0, excessive collision 0, mac trans error 0
111 deferred 0, late collision 0, excessive collision 0, mac trans error 0
123 deferred 0, late collision 0, excessive collision 0, mac trans error 0
[all …]
Dsflow-print-v6.out5 deferred 0, late collision 0, excessive collision 0, mac trans error 0
18 deferred 0, late collision 0, excessive collision 0, mac trans error 0
30 deferred 0, late collision 0, excessive collision 0, mac trans error 0
43 deferred 0, late collision 0, excessive collision 0, mac trans error 0
55 deferred 0, late collision 0, excessive collision 0, mac trans error 0
67 deferred 0, late collision 0, excessive collision 0, mac trans error 0
79 deferred 0, late collision 0, excessive collision 0, mac trans error 0
92 deferred 0, late collision 0, excessive collision 0, mac trans error 0
104 deferred 0, late collision 0, excessive collision 0, mac trans error 0
116 deferred 0, late collision 0, excessive collision 0, mac trans error 0
[all …]
/external/clang/test/CodeGenCXX/
Dvtable-key-function-ios.cpp2 …N: %clang_cc1 %s -triple=armv7-apple-darwin -emit-llvm -o - | FileCheck -check-prefix=CHECK-LATE %s
5 …%clang_cc1 %s -triple=x86_64-pc-windows-gnu -emit-llvm -o - | FileCheck -check-prefix=CHECK-LATE %s
10 // We do a separate CHECK-LATE pass because the RTTI definition gets
64 // CHECK-LATE: @_ZTS6Test1a = linkonce_odr constant
65 // CHECK-LATE: @_ZTI6Test1a = linkonce_odr constant
98 // CHECK-LATE: @_ZTS6Test2a = linkonce_odr constant
99 // CHECK-LATE: @_ZTI6Test2a = linkonce_odr constant
117 // CHECK-LATE: @_ZTS6Test2b = linkonce_odr constant
118 // CHECK-LATE: @_ZTI6Test2b = linkonce_odr constant
150 // CHECK-LATE: @_ZTS6Test3a = linkonce_odr constant
[all …]
Dvtable-key-function-arm.cpp2 …%clang_cc1 %s -triple=armv7-unknown-unknown -emit-llvm -o - | FileCheck -check-prefix=CHECK-LATE %s
7 // We do a separate CHECK-LATE pass because the RTTI definition gets
93 // CHECK-LATE: @_ZTS6Test2a = constant
94 // CHECK-LATE: @_ZTI6Test2a = constant
114 // CHECK-LATE: @_ZTS6Test2b = constant
115 // CHECK-LATE: @_ZTI6Test2b = constant
148 // CHECK-LATE: @_ZTS6Test3a = linkonce_odr constant
149 // CHECK-LATE: @_ZTI6Test3a = linkonce_odr constant
169 // CHECK-LATE: @_ZTS6Test3b = linkonce_odr constant
170 // CHECK-LATE: @_ZTI6Test3b = linkonce_odr constant
/external/speex/libspeexdsp/
Djitter.c48 + late
144 …JITTER_MAX_BUFFER_SIZE]; /**< Packet arrival time (0 means it was late, even though it's a…
152 …int late_cutoff; /**< How late must a packet be for it …
158 … /**< Total window over which the late frames are counted …
160 …int max_late_rate; /**< Absolute maximum amount of late p…
169 cost = delay + late_factor*[number of frames that would be late if we used that delay]
171 @param late_factor Equivalent cost of a late frame (in timestamp units)
178 int late = 0; in compute_opt_delay() local
207 /* Pick the TOP_DELAY "latest" packets (doesn't need to actually be late in compute_opt_delay()
234 cost = -latest + late_factor*late; in compute_opt_delay()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/
Dclock_test.cc86 absl::Duration late, in AssertSleepForBounded() argument
90 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
104 // Tests that SleepFor() returns neither too early nor too late.
108 const absl::Duration late = absl::Milliseconds(300); in TEST() local
110 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
113 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/libtextclassifier/abseil-cpp/absl/time/
Dclock_test.cc86 absl::Duration late, in AssertSleepForBounded() argument
90 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
104 // Tests that SleepFor() returns neither too early nor too late.
108 const absl::Duration late = absl::Milliseconds(300); in TEST() local
110 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
113 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/openscreen/third_party/abseil/src/absl/time/
Dclock_test.cc86 absl::Duration late, in AssertSleepForBounded() argument
90 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
104 // Tests that SleepFor() returns neither too early nor too late.
108 const absl::Duration late = absl::Milliseconds(300); in TEST() local
110 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
113 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/tensorflow/third_party/absl/abseil-cpp/absl/time/
Dclock_test.cc90 absl::Duration late, in AssertSleepForBounded() argument
94 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
108 // Tests that SleepFor() returns neither too early nor too late.
112 const absl::Duration late = absl::Milliseconds(300); in TEST() local
114 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
117 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/abseil-cpp/absl/time/
Dclock_test.cc90 absl::Duration late, in AssertSleepForBounded() argument
94 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
108 // Tests that SleepFor() returns neither too early nor too late.
112 const absl::Duration late = absl::Milliseconds(300); in TEST() local
114 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
117 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/cronet/third_party/abseil-cpp/absl/time/
Dclock_test.cc90 absl::Duration late, in AssertSleepForBounded() argument
94 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
108 // Tests that SleepFor() returns neither too early nor too late.
112 const absl::Duration late = absl::Milliseconds(300); in TEST() local
114 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
117 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/webrtc/third_party/abseil-cpp/absl/time/
Dclock_test.cc90 absl::Duration late, in AssertSleepForBounded() argument
94 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
108 // Tests that SleepFor() returns neither too early nor too late.
112 const absl::Duration late = absl::Milliseconds(300); in TEST() local
114 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
117 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/angle/third_party/abseil-cpp/absl/time/
Dclock_test.cc90 absl::Duration late, in AssertSleepForBounded() argument
94 const absl::Duration upper_bound = d + late; in AssertSleepForBounded()
108 // Tests that SleepFor() returns neither too early nor too late.
112 const absl::Duration late = absl::Milliseconds(300); in TEST() local
114 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
117 EXPECT_TRUE(AssertSleepForBounded(d, early, late, timeout, in TEST()
/external/libiio/src/CI/travis/
Dlib.sh178 local LATE="$3"
186 symlink ${TO} ${LATE}
187 ls -l ${LATE}
222 local LATE=${branch}_latest_${LIBNAME}${LDIST}${EXT}
229 for rmf in ${TO} ${LATE} ; do
234 sftp_upload "${FROM}" "${TO}" "${LATE}" || {
235 echo_red "Failed to upload artifact from '${FROM}', to '${TO}', symlink '${LATE}'"

12345678910>>...51