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

  /external/webrtc/src/system_wrappers/interface/
static_instance.h 39 static volatile long instance_count = 0; local
53 kAddRefNoCreate && instance_count == 0) {
59 instance_count++;
60 if (instance_count == 1) {
64 instance_count--;
65 if (instance_count == 0) {
91 kAddRefNoCreate && instance_count == 0) {
95 if (1 == InterlockedIncrement(&instance_count)) {
97 InterlockedDecrement(&instance_count);
104 InterlockedDecrement(&instance_count);
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 43 static int instance_count = 0; variable
150 sprintf(filename, "aec_far%d.pcm", instance_count);
152 sprintf(filename, "aec_near%d.pcm", instance_count);
154 sprintf(filename, "aec_out%d.pcm", instance_count);
156 sprintf(filename, "aec_out_linear%d.pcm", instance_count);
158 sprintf(filename, "aec_buf%d.dat", instance_count);
160 sprintf(filename, "aec_skew%d.dat", instance_count);
162 sprintf(filename, "aec_delay%d.dat", instance_count);
164 instance_count++;

Completed in 110 milliseconds