HomeSort by relevance Sort by last modified time
    Searched refs:er (Results 1 - 25 of 56) sorted by null

1 2 3

  /system/media/audio_utils/
echo_reference.c 71 struct echo_reference *er; local
77 er = (struct echo_reference *)((char *)buffer_provider -
80 if (er->wr_src_buf == NULL || er->wr_frames_in == 0) {
86 buffer->frame_count = (buffer->frame_count > er->wr_frames_in) ? er->wr_frames_in : buffer->frame_count;
87 // this is er->rd_channel_count here as we resample after stereo to mono conversion if any
88 buffer->i16 = (int16_t *)er->wr_src_buf + (er->wr_curr_frame_size - er->wr_frames_in) * er->rd_channel_count
96 struct echo_reference *er; local
132 struct echo_reference *er = (struct echo_reference *)echo_reference; local
294 struct echo_reference *er = (struct echo_reference *)echo_reference; local
479 struct echo_reference *er; local
519 struct echo_reference *er = (struct echo_reference *)echo_reference; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 22 struct wps_er *er = eloop_ctx; local
38 if (er->filter_addr.s_addr &&
39 er->filter_addr.s_addr != addr.sin_addr.s_addr)
42 wpa_printf(MSG_DEBUG, "WPS ER: Received SSDP from %s",
44 wpa_hexdump_ascii(MSG_MSGDUMP, "WPS ER: Received SSDP contents",
47 if (sd == er->multicast_sd) {
97 wpa_printf(MSG_DEBUG, "WPS ER: "
110 wps_er_ap_cache_settings(er, &addr.sin_addr);
111 wps_er_ap_remove(er, &addr.sin_addr);
121 wpa_printf(MSG_DEBUG, "WPS ER: AP discovered: %s
    [all...]
wps_er.c 76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE);
99 static struct wps_er_ap * wps_er_ap_get(struct wps_er *er,
103 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
113 static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id)
116 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
178 static void wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap)
180 wpa_printf(MSG_DEBUG, "WPS ER: Unsubscribed from AP %s (%s)",
185 if (er->deinitializing && dl_list_empty(&er->ap_unsubscribing)) {
186 eloop_cancel_timeout(wps_er_deinit_finish, er, NULL)
359 struct wps_er *er = eloop_data; local
1233 struct wps_er *er = ctx; local
1269 struct wps_er *er; local
1349 struct wps_er *er = eloop_data; local
    [all...]
wps_er.h 35 struct wps_er *er; member in struct:wps_er_ap
101 void wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr,
103 void wps_er_ap_remove(struct wps_er *er, struct in_addr *addr);
104 int wps_er_ap_cache_settings(struct wps_er *er, struct in_addr *addr);
107 int wps_er_ssdp_init(struct wps_er *er);
108 void wps_er_ssdp_deinit(struct wps_er *er);
109 void wps_er_send_ssdp_msearch(struct wps_er *er);
wps.h 432 * WPS_EV_ER_AP_ADD - ER: AP added
437 * WPS_EV_ER_AP_REMOVE - ER: AP removed
442 * WPS_EV_ER_ENROLLEE_ADD - ER: Enrollee added
447 * WPS_EV_ER_ENROLLEE_REMOVE - ER: Enrollee removed
452 * WPS_EV_ER_AP_SETTINGS - ER: AP Settings learned
457 * WPS_EV_ER_SET_SELECTED_REGISTRAR - ER: SetSelectedRegistrar event
833 void wps_er_refresh(struct wps_er *er);
834 void wps_er_deinit(struct wps_er *er, void (*cb)(void *ctx), void *ctx);
835 void wps_er_set_sel_reg(struct wps_er *er, int sel_reg, u16 dev_passwd_id,
837 int wps_er_pbc(struct wps_er *er, const u8 *uuid)
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 477 EventRecurrence er = (EventRecurrence) obj; local
479 er.startDate == null : Time.compare(startDate, er.startDate) == 0) &&
480 freq == er.freq &&
481 (until == null ? er.until == null : until.equals(er.until)) &&
482 count == er.count &&
483 interval == er.interval &&
484 wkst == er.wkst &&
485 arraysEqual(bysecond, bysecondCount, er.bysecond, er.bysecondCount) &
    [all...]
  /external/libvpx/vp8/common/
extend.c 25 int er /* extend right border */
47 vpx_memset(dest_ptr2, src_ptr2[0], er);
59 linesize = el + er + w + 1;
77 int er = 0xf & (16 - (width & 0xf)); local
81 if (er != 0 || eb != 0)
83 extend_plane_borders(ybf->y_buffer, ybf->y_stride, height, width, 0, 0, eb, er);
88 er = 0x7 & (8 - (width & 0x7));
91 if (er || eb)
93 extend_plane_borders(ybf->u_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
94 extend_plane_borders(ybf->v_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
EventRecurrenceTest.java 338 EventRecurrence er = new EventRecurrence(); local
339 er.parse(recur);
765 private static void print(EventRecurrence er) {
767 System.out.println(" freq=" + er.freq);
768 System.out.println(" until=" + er.until);
769 System.out.println(" count=" + er.count);
770 System.out.println(" interval=" + er.interval);
771 System.out.println(" wkst=" + er.wkst);
772 System.out.println(" bysecond=" + Arrays.toString(er.bysecond));
773 System.out.println(" bysecondCount=" + er.bysecondCount)
    [all...]
  /external/tcpdump/
print-nfs.c 1084 parsestatus(const u_int32_t *dp, int *er)
1091 if (er)
1092 *er = errnum;
1175 int er; local
1177 dp = parsestatus(dp, &er);
1180 if (er)
1189 int er; local
1191 if (!(dp = parsestatus(dp, &er)))
1193 if (er)
1206 int er; local
1223 int er; local
1274 int er; local
1360 int er; local
1390 int er; local
1400 int er; local
1424 int er; local
1460 int er; local
1492 int er; local
    [all...]
  /external/openssl/crypto/txt_db/
txt_db.c 74 int er=1; local
162 er=2;
171 er=2;
175 er=0;
178 if (er)
181 if (er == 1) fprintf(stderr,"OPENSSL_malloc failure\n");
  /external/chromium/net/tools/flip_server/
epoll_server.h 784 friend ostream& operator<<(ostream& os, const EventRecorder& er) {
785 for (int i = 0; i < er.unregistered_fds_.size(); ++i) {
786 os << "fd: " << er.unregistered_fds_[i] << "\n";
787 os << er.unregistered_fds_[i];
789 for (EventCountsMap::const_iterator i = er.event_counts_.begin();
790 i != er.event_counts_.end();
795 for (int i = 0; i < er.debug_events_.size(); ++i) {
796 os << *(er.debug_events_[i]) << "\n";
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_dm_co.h 244 BTA_API extern void bta_dm_co_ble_load_local_keys (tBTA_DM_BLE_LOCAL_KEY_MASK *p_key_mask, BT_OCTET16 er,
  /external/proguard/src/proguard/gui/
ProGuardRunnable.java 102 catch (OutOfMemoryError er)
ReTraceRunnable.java 108 catch (OutOfMemoryError er)
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 230 * @param er The <code>EntityResolver</code> to be used to resolve entities
234 public abstract void setEntityResolver(EntityResolver er);
  /external/bluetooth/bluedroid/stack/btm/
btm_ble.c 213 memcpy(p_devcb->er, p_key->er, sizeof(BT_OCTET16));
232 ** the local device ER is copied into er
235 void BTM_GetDeviceEncRoot (BT_OCTET16 er)
240 memcpy (er, btm_cb.devcb.er, BT_OCTET16_LEN);
1437 BT_OCTET16 er; local
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_keys.c 340 BT_OCTET16 er; local
348 BTM_GetDeviceEncRoot(er);
349 /* CSRK = d1(ER, DIV, 1) */
353 if (!SMP_Encrypt(er, BT_OCTET16_LEN, buffer, 4, &output))
737 ** Description This function is to calculate LTK = d1(ER, DIV, 0)= e(ER, DIV)
744 BT_OCTET16 er; local
749 BTM_GetDeviceEncRoot(er);
751 /* LTK = d1(ER, DIV, 0)= e(ER, DIV)*
    [all...]
  /external/stressapptest/src/
worker.cc 867 struct ErrorRecord er; local
868 er.actual = actual;
869 er.expected = expected;
870 er.vaddr = &memblock[i];
874 ProcessError(&er, 12, errormessage.c_str());
1009 struct ErrorRecord er; local
1010 er.actual = actual;
1012 er.expected = tag;
1013 er.vaddr = mem64;
1016 er.tagvaddr = reinterpret_cast<uint64*>(actual)
1246 struct ErrorRecord er; local
1390 struct ErrorRecord er; local
    [all...]
worker.h 317 virtual void ProcessError(struct ErrorRecord *er,
433 virtual void ProcessError(struct ErrorRecord *er,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RandomPhrase.java 220 catch (Error er) {
222 er.printStackTrace(System.err);
  /external/bluetooth/bluedroid/btif/co/
bta_dm_co.c 352 void bta_dm_co_ble_load_local_keys(tBTA_DM_BLE_LOCAL_KEY_MASK *p_key_mask, BT_OCTET16 er,
  /external/grub/stage2/
iso9660.h 148 struct ER {
154 } er; member in union:rock_ridge::__anon7125
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java 97 } catch (InterruptedException er) {
  /external/openssl/crypto/rc4/asm/
rc4-md5-x86_64.pl 616 elsif ($conv eq "b") { $reg =~ s/%[er]([^x]+)x?/%$1l/; }
617 elsif ($conv eq "w") { $reg =~ s/%[er](.+)/%$1/; }
618 elsif ($conv eq "d") { $reg =~ s/%[er](.+)/%e$1/; }
rc4-x86_64.pl 665 elsif ($conv eq "b") { $reg =~ s/%[er]([^x]+)x?/%$1l/; }
666 elsif ($conv eq "w") { $reg =~ s/%[er](.+)/%$1/; }
667 elsif ($conv eq "d") { $reg =~ s/%[er](.+)/%e$1/; }

Completed in 725 milliseconds

1 2 3