HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 351 - 375 of 521) sorted by null

<<11121314151617181920>>

  /external/webp/src/enc/
quant.c 428 int best_path[3] = {-1, -1, -1}; // store best-last/best-level/best-previous
431 int last = first - 1; local
446 if (err > thresh) last = n;
449 // to last + 1 (inclusive) without losing much.
450 if (last < 15) ++last;
466 for (n = first; n <= last; ++n) {
  /external/wpa_supplicant/
config.c 386 int val = 0, last, errors = 0; local
402 last = *end == '\0';
415 if (last)
468 int val = 0, last, errors = 0; local
484 last = *end == '\0';
502 if (last)
587 int val = 0, last; local
603 last = *end == '\0';
622 if (last)
760 int val = 0, last, errors = 0 local
858 int last, errors = 0; local
1463 struct wpa_ssid *ssid, *last = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config.c 419 int val = 0, last, errors = 0; local
435 last = *end == '\0';
448 if (last)
503 int val = 0, last, errors = 0; local
519 last = *end == '\0';
553 if (last)
666 int val = 0, last; local
682 last = *end == '\0';
701 if (last)
845 int val = 0, last, errors = 0 local
945 int last, errors = 0; local
1667 struct wpa_ssid *ssid, *last = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
tncc.c 940 struct tnc_if_imc *imc, *last; local
943 last = tncc->imc;
944 while (last && last->next)
945 last = last->next;
1034 if (last == NULL)
1037 last->next = imc;
1038 last = imc;
1127 struct tnc_if_imc *imc, *last; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
tncs.c 1097 struct tnc_if_imv *imv, *last; local
1100 last = NULL;
1124 if (last == NULL)
1127 last->next = imv;
1128 last = imv;
  /external/wpa_supplicant_8/src/drivers/
driver_madwifi.c 1319 int last = IEEE80211_IOCTL_KICKMAC; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 940 struct tnc_if_imc *imc, *last; local
943 last = tncc->imc;
944 while (last && last->next)
945 last = last->next;
1034 if (last == NULL)
1037 last->next = imc;
1038 last = imc;
1127 struct tnc_if_imc *imc, *last; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 1097 struct tnc_if_imv *imv, *last; local
1100 last = NULL;
1124 if (last == NULL)
1127 last->next = imv;
1128 last = imv;
  /external/wpa_supplicant_8/src/utils/
edit.c 181 struct edit_history *h, *match = NULL, *last = NULL; local
192 last = h;
203 if (count >= HISTORY_MAX && last) {
204 dl_list_del(&last->list);
205 os_free(last);
550 static enum edit_key_code esc_seq_to_key1_no(char last)
552 switch (last) {
567 static enum edit_key_code esc_seq_to_key1_shift(char last)
569 switch (last) {
584 static enum edit_key_code esc_seq_to_key1_alt(char last)
717 char last, *pos; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 735 bool last = false; local
738 last = true;
762 if (last)
    [all...]
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 351 int last = value.length() - 1; local
352 int end = last;
359 if (start == 0 && end == last) {
557 * <li>the last instance of a repeated parameter is preferred.
580 * <li>the last instance of a repeated parameter is preferred.
735 * False means that the last repeated parameter is preferred.
  /frameworks/base/core/java/android/widget/
AdapterView.java 102 * Our height after the last layout
142 * True if the data has changed since the last layout
197 * The last selected position we used when notifying
202 * The id of the last selected position we used when notifying
622 * Returns the position within the adapter's data set for the last item
1058 int last = seed; local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 576 * Set the beginning of the next contour relative to the last point on the
592 * Add a line from the last point to the specified point (x,y).
604 * Same as lineTo, but the coordinates are considered relative to the last
623 * Add a quadratic bezier from the last point, approaching control point
637 * Same as quadTo, but the coordinates are considered relative to the last
641 * @param dx1 The amount to add to the x-coordinate of the last point on
643 * @param dy1 The amount to add to the y-coordinate of the last point on
645 * @param dx2 The amount to add to the x-coordinate of the last point on
647 * @param dy2 The amount to add to the y-coordinate of the last point on
662 * Add a cubic bezier from the last point, approaching control point
727 Point2D last = mPath.getCurrentPoint(); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
String.java 268 int last = offset + byteCount; local
271 while (idx < last) {
293 if (idx + utfCount > last) {
808 // Note: last character not copied!
1320 int last = _offset + _count; local
1558 int start = offset, last = offset + count - 1; local
    [all...]
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 41 * This base bundle acts as the root and is the last fallback in case none of
431 ResourceBundle last, theParent = this; local
437 last = theParent;
440 throw missingResourceException(last.getClass().getName(), key);
    [all...]
TreeMap.java 388 Node<K, V> adjacent = (left.height > right.height) ? left.last() : right.first();
612 return immutableCopy(root == null ? null : root.last());
619 Node<K, V> result = root.last();
632 return root.last().getKey();
794 * last node in the tree.
819 return left.last();
848 * Returns the last node in this subtree.
850 public Node<K, V> last() { method in class:TreeMap.Node
867 protected Node<K, V> last; field in class:TreeMap.MapIterator
885 last = next
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 92 * "last" node terminating any chain of next references starting at
93 * a live node. The "first" and "last" nodes may or may not be live.
94 * The "first" and "last" nodes are always mutually reachable.
97 * next reference in the first or last node to a fresh node
102 * first or last node. Active nodes cannot be unlinked.
116 * The head and tail are only approximations to the first and last
139 * prev links from the last node. However, this is not true for
188 * dummy node, NEXT_TERMINATOR, and not the last active node.
192 * find the last (active) node, for enqueueing a new node, we need
228 * - head may not be reachable from the first or last node, or from tai
731 Node<E> last() { method in class:ConcurrentLinkedDeque
1118 Node<E> beginningOfTheEnd = null, last = null; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 101 rs.last();
970 fail("Can move cursor to the last position for TYPE_FORWARD_ONLY ResultSet");
    [all...]
OldResultSetTest.java 208 target.absolute(-1); // last
260 * Second block first assertion fails. Is Last should evaluate true if the
286 target.last();
291 target.last();
307 //after last
329 target.last();
468 assertTrue(target.last());
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 1196 MosaicFrame *last = frames[frames_size-1]; local
1249 MosaicFrame *last = frames[frames_size-1]; local
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_detection.cpp 706 int x,next_x,last,right; local
708 last=w-4;
709 for(x=3;x<=last;x=next_x)
713 if(right>last) right=last;
729 int x,next_x,last; local
732 last=w-4;
733 for(x=3;x<=last;x=next_x)
738 nc = db_mini(128,last-x+1);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AccessibilityTutorialActivity.java 393 final int last = mAllApps.getLastVisiblePosition(); local
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
BinaryDictInputOutput.java 213 * @return the index after the last character.
696 + " last terminal at " + lastTerminalAddress + "\n"
871 CharGroupInfo last = null; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
function.h 31 The main insn-chain is saved in the last element of the chain,
36 /* First and last insns in the chain of the saved sequence. */
38 rtx last; local
62 The main insn-chain is saved in the last element of the chain,
70 /* Location the last line-number NOTE emitted.
125 Record the delta since last aligned boundary here in order to get
319 If stack grows down, this is the address of the last stack slot allocated.
525 /* Last statement uid. */
  /bionic/libc/netbsd/resolv/
res_cache.c 103 * same function. Comparing with the last used generation number ensures
1761 struct resolv_cache_info* last; local
    [all...]

Completed in 899 milliseconds

<<11121314151617181920>>