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

1 2 3 4 5 6 7

  /system/media/audio_utils/
echo_reference.c 73 struct echo_reference *er; local
79 er = (struct echo_reference *)((char *)buffer_provider -
82 if (er->wr_src_buf == NULL || er->wr_frames_in == 0) {
88 buffer->frame_count = (buffer->frame_count > er->wr_frames_in) ?
89 er->wr_frames_in : buffer->frame_count;
90 // this is er->rd_channel_count here as we resample after stereo to mono conversion if any
91 buffer->i16 = (int16_t *)er->wr_src_buf + (er->wr_curr_frame_size - er->wr_frames_in)
100 struct echo_reference *er; local
136 struct echo_reference *er = (struct echo_reference *)echo_reference; local
298 struct echo_reference *er = (struct echo_reference *)echo_reference; local
493 struct echo_reference *er; local
534 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) {
95 wpa_printf(MSG_DEBUG, "WPS ER: "
108 wps_er_ap_cache_settings(er, &addr.sin_addr);
109 wps_er_ap_remove(er, &addr.sin_addr);
119 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,
104 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
116 static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id)
119 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
181 static void wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap)
183 wpa_printf(MSG_DEBUG, "WPS ER: Unsubscribed from AP %s (%s)",
188 if (er->deinitializing && dl_list_empty(&er->ap_unsubscribing))
189 wps_er_deinit_finish(er, NULL)
359 struct wps_er *er = eloop_data; local
1215 struct wps_er *er = ctx; local
1251 struct wps_er *er; local
1347 struct wps_er *er = eloop_data; local
    [all...]
wps_er.h 35 struct wps_er *er; member in struct:wps_er_ap
102 void wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr,
104 void wps_er_ap_remove(struct wps_er *er, struct in_addr *addr);
105 int wps_er_ap_cache_settings(struct wps_er *er, struct in_addr *addr);
108 int wps_er_ssdp_init(struct wps_er *er);
109 void wps_er_ssdp_deinit(struct wps_er *er);
110 void wps_er_send_ssdp_msearch(struct wps_er *er);
  /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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-common-7.d 20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 64
cfi-label.d 26 DW_CFA_def_cfa: r.* \([er]sp\) ofs [48]
27 DW_CFA_offset: r.* \([er]ip\) at cfa-[48]
cfi-common-1.d 20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
cfi-common-2.d 16 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
cfi-common-5.d 21 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/cfi/
cfi-common-7.d 20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 64
cfi-common-1.d 20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
cfi-common-2.d 16 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
cfi-common-5.d 22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
  /external/libvpx/libvpx/vp8/common/
extend.c 23 int er /* extend right border */
39 memset(dest_ptr2, src_ptr2[0], er);
53 linesize = el + er + w;
71 int er = dst->border + dst->y_width - src->y_width; local
75 er);
80 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
84 eb, er);
88 eb, er);
97 int er = dst->border + dst->y_width - src->y_width; local
107 if (srcx + srcw != src->y_width) er = 0
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 360 static public boolean canHandleRecurrenceRule(EventRecurrence er) {
361 switch (er.freq) {
371 if (er.count > 0 && !TextUtils.isEmpty(er.until)) {
376 // er.byday[]
380 * in er.byday[] and the "nth" is stored in er.bydayNum[]. Currently we
384 for (int i = 0; i < er.bydayCount; i++) {
385 if (isSupportedMonthlyByNthDayOfWeek(er.bydayNum[i])) {
394 if (numOfByDayNum > 0 && er.freq != EventRecurrence.MONTHLY)
    [all...]
  /external/toolchain-utils/crosperf/
experiment_runner_unittest.py 122 er = experiment_runner.ExperimentRunner(
128 self.assertFalse(er._terminated)
129 self.assertEqual(er.STATUS_TIME_DELAY, 10)
132 er = experiment_runner.ExperimentRunner(
138 self.assertEqual(er.STATUS_TIME_DELAY, 30)
168 er = experiment_runner.ExperimentRunner(
174 er.STATUS_TIME_DELAY = 2
176 er._Run(self.exp)
196 er = experiment_runner.ExperimentRunner(
202 er.STATUS_TIME_DELAY =
    [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 1027 const uint32_t *dp, int *er)
1034 if (er)
1035 *er = errnum;
1120 int er; local
1122 dp = parsestatus(ndo, dp, &er);
1125 if (er)
1135 int er; local
1137 if (!(dp = parsestatus(ndo, dp, &er)))
1139 if (er)
1153 int er; local
1171 int er; local
1223 int er; local
1315 int er; local
1346 int er; local
1357 int er; local
1382 int er; local
1419 int er; local
1452 int er; local
    [all...]
  /external/autotest/site_utils/rpm_control_system/
rpm_dispatcher.py 81 except socket.error as er:
83 errno.errorcode[er.errno])
214 except socket.error as er:
216 errno.errorcode[er.errno])
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntcons.h 151 FORCEINLINE ULONG GetEventProcessorIndex (PCEVENT_RECORD er) {
152 return ((er->EventHeader.Flags & EVENT_HEADER_FLAG_PROCESSOR_INDEX) != 0 ? er->BufferContext.ProcessorIndex : er->BufferContext.ProcessorNumber);
  /system/bt/bta/include/
bta_dm_co.h 210 tBTA_DM_BLE_LOCAL_KEY_MASK* p_key_mask, BT_OCTET16 er,
  /external/lzma/CPP/7zip/UI/Console/
UpdateCallbackConsole.cpp 57 const CArcErrorInfo &er = arc.ErrorInfo; local
59 UInt32 errorFlags = er.GetErrorFlags();
61 if (errorFlags != 0 || !er.ErrorMessage.IsEmpty())
76 if (!er.ErrorMessage.IsEmpty())
79 *_se << "ERRORS:" << endl << er.ErrorMessage << endl;
89 UInt32 warningFlags = er.GetWarningFlags();
91 if (warningFlags != 0 || !er.WarningMessage.IsEmpty())
106 if (!er.WarningMessage.IsEmpty())
109 *_so << "WARNINGS:" << endl << er.WarningMessage << endl;
121 if (er.ErrorFormatIndex >= 0)
    [all...]
ExtractCallbackConsole.cpp 535 const CArcErrorInfo &er = arc.ErrorInfo; local
539 if (arc.FormatIndex == er.ErrorFormatIndex)
546 Add_Messsage_Pre_ArcType(s, "Can not open the file", codecs->GetFormatNamePtr(er.ErrorFormatIndex));
573 const CArcErrorInfo &er = arc.ErrorInfo; local
575 UInt32 errorFlags = er.GetErrorFlags();
577 if (errorFlags != 0 || !er.ErrorMessage.IsEmpty())
594 if (!er.ErrorMessage.IsEmpty())
597 *_se << "ERRORS:" << endl << er.ErrorMessage << endl;
609 UInt32 warningFlags = er.GetWarningFlags();
611 if (warningFlags != 0 || !er.WarningMessage.IsEmpty())
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorExpr.java 658 EvalContext(boolean degreeMode, int len, ExprResolver er) {
661 mExprResolver = er;
663 EvalContext(DataInput in, int len, ExprResolver er) throws IOException {
666 mExprResolver = er;
    [all...]

Completed in 800 milliseconds

1 2 3 4 5 6 7