HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 76 - 100 of 2704) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/
NDC.java 55 int last = next - 1; local
56 String key = PREFIX + last;
  /external/tensorflow/tensorflow/compiler/xla/
sparse_index_array.cc 93 tensorflow::gtl::ArraySlice<int64> last = At(0); local
94 if (!IndexUtil::IndexInBounds(shape, last)) {
102 if (IndexUtil::CompareIndices(last, next) >= 0) {
105 last = next;
  /external/toybox/toys/lsb/
seq.c 1 /* seq.c - Count from first to last, by increment.
14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last
16 Count from first to last, by increment. Omitted arguments default
17 to 1. Two arguments are used as first and last. Arguments can be
60 double first = 1, increment = 1, last, dd; local
67 default: last = parsef(toys.optargs[toys.optc-1]);
79 dd = (double []){first, increment, last}[i];
85 // Other implementations output nothing if increment is 0 and first > last,
86 // but loop forever if first < last or even first == last. We outpu
    [all...]
  /external/v8/src/interpreter/
bytecode-peephole-optimizer.h 53 BytecodeNode* last() { return &last_; } function in class:v8::internal::interpreter::final
  /external/vulkan-validation-layers/layers/
parameter_name.h 112 std::string::size_type last = 0; local
116 current = source_.find(IndexFormatSpecifier, last);
120 format << source_.substr(last, (current - last)) << index;
121 last = current + IndexFormatSpecifier.length();
124 format << source_.substr(last, std::string::npos);
  /external/webp/src/enc/
cost_enc.h 30 int last; member in struct:VP8Residual
  /external/webrtc/talk/media/webrtc/
webrtcmediaengine_unittest.cc 67 const std::string* last = nullptr; local
69 if (last && *last > extension.name) {
72 last = &extension.name;
  /external/wpa_supplicant_8/hs20/server/www/
spp.php 104 $last = exec("$osu_root/spp/hs20_spp_server -r$osu_root -f/tmp/hs20_spp_server.log", $output, $ret); variable
  /external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c 108 struct eap_method *m, *last = NULL; local
123 last = m;
126 if (last)
127 last->next = method;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListener.java 66 int last = firstCell + cellCount - 1; local
67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
  /frameworks/base/tools/incident_report/
printer.cpp 82 char* last = mBuf; local
85 p = strchr(last, '\n');
86 int size = p != NULL ? p - last + 1 : strlen(last);
87 fwrite(last, size, 1, mOut);
95 last = p+1;
  /hardware/qcom/display/msm8084/libqdutils/
cb_utils.cpp 47 size_t last = list->numHwLayers - 1; local
48 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame;
54 for(size_t i = 0 ; i < last; i++) {
65 for (size_t i = 0 ; i < last; i++) {
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.cpp 47 size_t last = list->numHwLayers - 1; local
48 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame;
54 for(size_t i = 0 ; i < last; i++) {
65 for (size_t i = 0 ; i < last; i++) {
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.cpp 47 size_t last = list->numHwLayers - 1; local
48 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame;
54 for(size_t i = 0 ; i < last; i++) {
66 for (size_t i = 0 ; i < last; i++) {
  /libcore/ojluni/src/main/java/java/text/
CharacterIterator.java 54 * by calling setIndex(), first(), and last().
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
126 * @return the last character in the text, or DONE if the text is empty
129 public char last(); method in interface:CharacterIterator
177 * @return the index after the last character in the text
  /libcore/ojluni/src/main/java/sun/nio/fs/
Util.java 82 int last = 0; local
85 result[n++] = s.substring(last, i);
86 last = i + 1;
89 result[n] = s.substring(last, s.length());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.iterators/
rbegin.pass.cpp 29 const size_t last = s.size() - 1; local
30 assert( *b == s[last]);
31 assert( &*b == &s[last]);
32 assert( *cb1 == s[last]);
33 assert(&*cb1 == &s[last]);
34 assert( *cb2 == s[last]);
35 assert(&*cb2 == &s[last]);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
iter_iter_size_char.pass.cpp 29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, n2, c);
iter_iter_string.pass.cpp 28 typename S::const_iterator last = s.begin() + pos1 + n1; local
29 typename S::size_type xlen = last - first;
30 s.replace(first, last, str);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.iterators/
rbegin.pass.cpp 29 const size_t last = s.size() - 1; local
30 assert( *b == s[last]);
31 assert( &*b == &s[last]);
32 assert( *cb1 == s[last]);
33 assert(&*cb1 == &s[last]);
34 assert( *cb2 == s[last]);
35 assert(&*cb2 == &s[last]);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
test_fallback_malloc.pass.cpp 44 const size_t *last = first + len; local
47 for ( const size_t *iter = first; iter != last; ++iter ) {
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
parameter_name.h 112 std::string::size_type last = 0; local
116 current = source_.find(IndexFormatSpecifier, last);
120 format << source_.substr(last, (current - last)) << index;
121 last = current + IndexFormatSpecifier.length();
124 format << source_.substr(last, std::string::npos);
  /system/core/libunwindstack/
DwarfEhFrameWithHdr.cpp 123 size_t last = total_entries; local
124 while (first < last) {
125 size_t current = (first + last) / 2;
135 last = current;
140 if (last != 0) {
141 const FdeInfo* info = GetFdeInfoFromIndex(last - 1);
  /system/tools/hidl/
Location.cpp 100 Position last = Position(loc.end().filename(), loc.end().line(), local
103 if (loc.begin().filename() != last.filename()) {
104 ostr << "-" << last; local
105 } else if (loc.begin().line() != last.line()) {
106 ostr << "-" << last.line() << "." << last.column();
107 } else if (loc.begin().column() != last.column()) {
108 ostr << "-" << last.column();

Completed in 1141 milliseconds

1 2 34 5 6 7 8 91011>>