Searched defs:counter (Results 151 - 175 of 289) sorted by relevance

1234567891011>>

/external/webrtc/src/modules/audio_processing/ns/
H A Dnsx_core_neon.c99 int16_t lmagn[HALF_ANAL_BLOCKL], counter, countDiv; local
152 // Get counter values from state
153 counter = inst->noiseEstCounter[s];
154 assert(counter < 201);
155 countDiv = WebRtcNsx_kCounterDiv[counter];
156 countProd = (int16_t)WEBRTC_SPL_MUL_16_16(counter, countDiv);
271 // +=QUANTILE*delta/(inst->counter[s]+1) QUANTILE=0.25, =1 in Q2
272 // CounterDiv=1/(inst->counter[s]+1) in Q15
301 if (counter >= END_STARTUP_LONG) {
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_sim.c40 u16 counter; member in struct:eap_sim_data
135 struct eap_sim_msg *msg, u16 counter,
142 if (data->counter <= EAP_SIM_MAX_FAST_REAUTHS) {
152 counter == 0 && nonce_s == NULL)
159 if (counter > 0) {
160 wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
161 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
242 eap_sim_derive_keys_reauth(data->counter, sm->identity,
249 if (eap_sim_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
284 data->counter);
134 eap_sim_build_encr(struct eap_sm *sm, struct eap_sim_data *data, struct eap_sim_msg *msg, u16 counter, const u8 *nonce_s) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_ctrl.c79 static int counter = 0; local
97 counter++;
102 (int) getpid(), counter);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_sim.c35 u16 counter; member in struct:eap_sim_data
147 struct eap_sim_msg *msg, u16 counter,
160 if (data->counter <= EAP_SIM_MAX_FAST_REAUTHS) {
171 counter == 0 && nonce_s == NULL)
178 if (counter > 0) {
179 wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
180 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
261 eap_sim_derive_keys_reauth(data->counter, sm->identity,
268 if (eap_sim_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
303 data->counter);
146 eap_sim_build_encr(struct eap_sm *sm, struct eap_sim_data *data, struct eap_sim_msg *msg, u16 counter, const u8 *nonce_s) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c149 * @counter: Pointer to byte array
150 * @len: Length of the counter in bytes
152 * This function increments the last byte of the counter by one and continues
156 void inc_byte_array(u8 *counter, size_t len) argument
160 counter[pos]++;
161 if (counter[pos] != 0)
/external/wpa_supplicant_8/src/common/
H A Dwpa_ctrl.c79 static int counter = 0; local
97 counter++;
102 (int) getpid(), counter);
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_sim.c35 u16 counter; member in struct:eap_sim_data
147 struct eap_sim_msg *msg, u16 counter,
160 if (data->counter <= EAP_SIM_MAX_FAST_REAUTHS) {
171 counter == 0 && nonce_s == NULL)
178 if (counter > 0) {
179 wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
180 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
261 eap_sim_derive_keys_reauth(data->counter, sm->identity,
268 if (eap_sim_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
303 data->counter);
146 eap_sim_build_encr(struct eap_sm *sm, struct eap_sim_data *data, struct eap_sim_msg *msg, u16 counter, const u8 *nonce_s) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c149 * @counter: Pointer to byte array
150 * @len: Length of the counter in bytes
152 * This function increments the last byte of the counter by one and continues
156 void inc_byte_array(u8 *counter, size_t len) argument
160 counter[pos]++;
161 if (counter[pos] != 0)
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dwpa_ctrl.c79 static int counter = 0; local
97 counter++;
102 (int) getpid(), counter);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_sim.c35 u16 counter; member in struct:eap_sim_data
147 struct eap_sim_msg *msg, u16 counter,
160 if (data->counter <= EAP_SIM_MAX_FAST_REAUTHS) {
171 counter == 0 && nonce_s == NULL)
178 if (counter > 0) {
179 wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
180 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
261 eap_sim_derive_keys_reauth(data->counter, sm->identity,
268 if (eap_sim_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
303 data->counter);
146 eap_sim_build_encr(struct eap_sm *sm, struct eap_sim_data *data, struct eap_sim_msg *msg, u16 counter, const u8 *nonce_s) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c149 * @counter: Pointer to byte array
150 * @len: Length of the counter in bytes
152 * This function increments the last byte of the counter by one and continues
156 void inc_byte_array(u8 *counter, size_t len) argument
160 counter[pos]++;
161 if (counter[pos] != 0)
/external/chromium/base/
H A Dbind_unittest.cc166 int GetCopies(const CopyCounter& counter) { argument
167 return counter.copies();
491 CopyCounter counter(&copies, &assigns);
493 Bind(&GetCopies, ConstRef(counter));
508 CopyCounter counter(&copies, &assigns);
511 Bind(&VoidPolymorphic1<CopyCounter>, counter);
519 forward_cb.Run(counter);
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_task.cc173 Histogram* counter = LinearHistogram::FactoryGet( local
176 g_histogram_table->insert(std::make_pair(counter_name, counter));
177 return counter;
193 Histogram* counter = Histogram::FactoryTimeGet( local
196 g_histogram_table->insert(std::make_pair(counter_name, counter));
197 return counter;
205 Histogram* counter = GetEnumsHistogramForConfig(config, name, boundary_value); local
206 counter->Add(sample);
216 Histogram* counter = GetTimesHistogramForConfig( local
218 counter
[all...]
/external/clang/test/Sema/
H A Ddesignated-initializers.c127 int counter = 0; variable
128 int get8() { ++counter; return 8; }
/external/dbus/dbus/
H A Ddbus-transport.c61 live_messages_notify (DBusCounter *counter, argument
69 _dbus_verbose ("Size counter value is now %d\n",
70 (int) _dbus_counter_get_size_value (counter));
71 _dbus_verbose ("Unix FD counter value is now %d\n",
72 (int) _dbus_counter_get_unix_fd_value (counter));
105 DBusCounter *counter; local
123 counter = _dbus_counter_new ();
124 if (counter == NULL)
134 _dbus_counter_unref (counter);
152 _dbus_counter_unref (counter);
[all...]
/external/freetype/src/pshinter/
H A Dpshrec.c495 /* all counter masks into independent counter "paths". */
712 /* add a "hstem3/vstem3" counter to our dimension table */
722 PS_Mask counter = dim->counters.masks; local
725 /* try to find an existing counter mask that already uses */
727 for ( ; count > 0; count--, counter++ )
729 if ( ps_mask_test_bit( counter, hint1 ) ||
730 ps_mask_test_bit( counter, hint2 ) ||
731 ps_mask_test_bit( counter, hint3 ) )
735 /* create a new counter whe
[all...]
/external/linux-tools-perf/
H A Dbuiltin-top.c218 static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip) argument
233 symbol__inc_addr_samples(sym, syme->map, counter, ip);
455 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(top.sym_evsel));
543 int counter = 0; local
550 prompt_integer(&counter, "Enter details event counter");
552 if (counter >= top.evlist->nr_entries) {
559 if (top.sym_evsel->idx == counter)
881 struct perf_evsel *counter; local
883 list_for_each_entry(counter,
[all...]
/external/opencv/cv/src/
H A Dcvgeometry.cpp176 int i, total, counter = 0; local
235 counter += dist > 0;
238 result = counter % 2 == 0 ? -100 : 100;
286 counter += dist > 0;
289 result = counter % 2 == 0 ? -100 : 100;
339 counter += dist_num > 0;
343 if( counter % 2 == 0 )
/external/openssl/crypto/evp/
H A De_aes.c686 /* increment counter (64-bit int) by 1 */
687 static void ctr64_inc(unsigned char *counter) { argument
693 c = counter[n];
695 counter[n] = c;
/external/oprofile/daemon/
H A Dopd_ibs.c426 ibs_vc[ibs_selected_size].counter = ibs_selected_size + OP_MAX_COUNTERS;
758 unsigned long counter, ibs_vci, key; local
770 counter = ibs_vci + OP_MAX_COUNTERS;
800 opd_open_sample_file(file, last, sf, counter, is_cg);
811 * from the given counter value.
813 static struct opd_event * ibs_sfile_find_counter_event(unsigned long counter) argument
817 if (counter >= OP_MAX_COUNTERS + OP_MAX_IBS_COUNTERS
818 || counter < OP_MAX_COUNTERS) {
820 "invalid counter value %lu.\n", counter);
[all...]
/external/valgrind/main/drd/
H A Ddrd_pthread_intercepts.c141 volatile int counter; member in struct:__anon14461
184 DRD_IGNORE_VAR(sema->counter);
185 sema->counter = 0;
196 while (sema->counter == 0) {
198 if (syscall(__NR_futex, (UWord)&sema->counter,
213 sema->counter--;
218 sema->counter++;
220 syscall(__NR_futex, (UWord)&sema->counter,
/external/valgrind/tsan/
H A Dts_util.cc218 uintptr_t counter = G_stats->read_proc_self_stats++; local
219 if (counter >= 1024 && ((counter & (counter - 1)) == 0))
220 Report("INFO: reading %s for %ld'th time\n", path, counter);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODRedBlackTree.h158 Counter counter; local
159 visitInorder(&counter);
160 return counter.count();
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.h65 int counter; member in struct:__anon15699
H A Decho_cancellation.c63 short counter; member in struct:__anon15705
252 aecpc->counter = 0;
482 if (aecpc->counter == 0) {
490 aecpc->counter++;
493 aecpc->counter = 0;
496 if (aecpc->counter * nBlocks10ms >= 6) {
501 aecpc->aec->mult * 8) / (4 * aecpc->counter * PART_LEN),

Completed in 630 milliseconds

1234567891011>>