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

1 2 3

  /external/libvpx/libvpx/vp8/common/
extend.c 27 int er /* extend right border */
45 memset(dest_ptr2, src_ptr2[0], er);
59 linesize = el + er + w;
81 int er = dst->border + dst->y_width - src->y_width; local
86 et, el, eb, er);
91 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
96 et, el, eb, er);
101 et, el, eb, er);
113 int er = dst->border + dst->y_width - src->y_width; local
127 er = 0
    [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.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);
wps_i.h 35 * er - Whether the local end is an external registrar
37 int er; member in struct:wps_data
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)
360 struct wps_er *er = eloop_data; local
1216 struct wps_er *er = ctx; local
1252 struct wps_er *er; local
1348 struct wps_er *er = eloop_data; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
extend.c 27 int er /* extend right border */
45 vpx_memset(dest_ptr2, src_ptr2[0], er);
59 linesize = el + er + w;
81 int er = dst->border + dst->y_width - src->y_width; local
86 et, el, eb, er);
91 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
96 et, el, eb, er);
101 et, el, eb, er);
113 int er = dst->border + dst->y_width - src->y_width; local
127 er = 0
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
DataModel.java 104 final ExecutedRunnable er = new ExecutedRunnable(runnable); local
105 getHandler().post(er);
108 synchronized (er) {
109 if (!er.isExecuted()) {
111 er.wait();
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 342 const CArcErrorInfo &er = arc.ErrorInfo; local
343 if (er.IsThereErrorOrWarning())
346 er.GetErrorFlags(), er.ErrorMessage,
347 er.GetWarningFlags(), er.WarningMessage));
411 const CArcErrorInfo &er = arc.ErrorInfo; local
413 if (er.ErrorFormatIndex >= 0)
417 codecs->GetFormatNamePtr(er.ErrorFormatIndex)))
425 const UString &s = er.ErrorMessage;
    [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...]
  /system/core/libziparchive/
zip_writer.cc 428 EocdRecord er = {}; local
429 er.eocd_signature = EocdRecord::kSignature;
430 er.disk_num = 0;
431 er.cd_start_disk = 0;
432 er.num_records_on_disk = files_.size();
433 er.num_records = files_.size();
434 er.cd_size = current_offset_ - startOfCdr;
435 er.cd_start_offset = startOfCdr;
437 if (fwrite(&er, sizeof(er), 1, file_) != 1)
    [all...]
  /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
499 struct echo_reference *er; local
540 struct echo_reference *er = (struct echo_reference *)echo_reference; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_triangle.c 245 GLfixed er, eg, eb, ea; member in struct:affine_info
326 + (sample[RCOMP] + 1) * info->er) >> (FIXED_SHIFT + 8); \
557 info.er = 0; \
564 info.er = FloatToFixed(unit->EnvColor[RCOMP] * CHAN_MAXF); \
601 GLfixed er, eg, eb, ea; /* texture env color */ member in struct:persp_info
824 info.er = 0; \
830 info.er = FloatToFixed(unit->EnvColor[RCOMP] * CHAN_MAXF); \
    [all...]
  /external/tcpdump/
print-nfs.c 1049 const uint32_t *dp, int *er)
1056 if (er)
1057 *er = errnum;
1142 int er; local
1144 dp = parsestatus(ndo, dp, &er);
1147 if (er)
1157 int er; local
1159 if (!(dp = parsestatus(ndo, dp, &er)))
1161 if (er)
1175 int er; local
1193 int er; local
1245 int er; local
1336 int er; local
1367 int er; local
1378 int er; local
1403 int er; local
1440 int er; local
1473 int er; local
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 839 static void ErrorInfo_Print(const CArcErrorInfo &er)
841 if (er.AreThereErrors())
842 PrintErrorFlags("Errors:", er.GetErrorFlags());
843 if (!er.ErrorMessage.IsEmpty())
844 PrintPropPair("Error", er.ErrorMessage);
845 if (er.AreThereWarnings())
846 PrintErrorFlags("Warnings:", er.GetWarningFlags());
847 if (!er.WarningMessage.IsEmpty())
848 PrintPropPair("Warning", er.WarningMessage);
1013 const CArcErrorInfo &er = arc.ErrorInfo; local
    [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...]
  /system/bt/stack/smp/
smp_keys.c 386 BT_OCTET16 er; local
394 BTM_GetDeviceEncRoot(er);
395 /* CSRK = d1(ER, DIV, 1) */
399 if (!SMP_Encrypt(er, BT_OCTET16_LEN, buffer, 4, &output))
801 ** Description This function is to calculate LTK = d1(ER, DIV, 0)= e(ER, DIV)
810 BT_OCTET16 er; local
815 BTM_GetDeviceEncRoot(er);
817 /* LTK = d1(ER, DIV, 0)= e(ER, DIV)*
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 1435 0x80, /* er */
1599 struct IT_er er; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
job.c 285 const DWORD er = GetLastError();
287 if (er == ERROR_FILE_EXISTS || er == ERROR_ALREADY_EXISTS)
299 error = map_windows32_error_to_string (er);
283 const DWORD er = GetLastError(); local
    [all...]
  /system/bt/bta/dm/
bta_dm_act.c 343 BT_OCTET16 er; local
404 /* load BLE local information: ID keys, ER if available */
405 bta_dm_co_ble_load_local_keys(&key_mask, er, &id_key);
409 BTM_BleLoadLocalKeys(BTA_BLE_LOCAL_KEY_TYPE_ER, (tBTM_BLE_LOCAL_KEYS *)&er);
    [all...]
  /system/core/adb/
sysdeps_win32.cpp 1336 android::base::ErrnoRestorer er; local
    [all...]
  /system/bt/btif/src/
btif_dm.c 135 UINT8 er[BT_OCTET16_LEN]; member in struct:__anon72230
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-m68k.c 4317 const char *er; local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 2453 EventRecurrence er = new EventRecurrence(); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-core/2.2.11/
jaxb-core-2.2.11.jar 
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 

Completed in 336 milliseconds

1 2 3