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

<<11121314151617181920>>

  /external/pdfium/xfa/src/fdp/src/css/
fde_cssdatatable.cpp 699 FX_WCHAR first = pszValue[0], last = pszValue[iValueLen - 1]; local
    [all...]
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417.cpp 485 FX_BOOL last = ((pattern & map) != 0); local
489 if (last == black) {
492 logic->addBar(last, width);
493 last = black;
498 logic->addBar(last, width);
    [all...]
  /external/skia/include/core/
SkString.h 43 const char* last = strrchr(string, subchar); local
44 if (NULL == last) return -1;
45 return SkToS32(last - &string[0]);
106 * the next char after the last one written. Note: a terminating 0 is not
  /external/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 122 // find_quad_roots returns the values sorted, so we start with the last
324 const int last = desc.fCount - 1; local
327 SkTSwap(colors[i], colors[last - i]);
330 pos[i] = SK_Scalar1 - pos[last - i];
331 pos[last - i] = SK_Scalar1 - tmp;
  /external/skia/src/fonts/
SkFontMgr_fontconfig.cpp 60 // look for the last substring after a '/' and return that, or return null.
62 const char* last = strrchr(str, '/'); local
63 return last ? last + 1 : nullptr;
  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 38 int last = fIntersections->used() - 1; local
39 for (int index = 0; index < last; ) {
49 --last;
52 --last;
SkDCubicLineIntersection.cpp 97 int last = fIntersections->used() - 1; local
98 for (int index = 0; index < last; ) {
108 --last;
111 --last;
SkDQuadLineIntersection.cpp 116 int last = fIntersections->used() - 1; local
117 for (int index = 0; index < last; ) {
127 --last;
130 --last;
SkPathOpsOp.cpp 23 if (SkOpAngle* last = segment->activeAngle(*startPtr, startPtr, endPtr, &done)) {
24 *startPtr = last->start();
25 *endPtr = last->end();
31 return last->segment();
148 SkOpSpanBase* last = current->markAndChaseDone(start, end); local
149 if (last && !last->chased()) {
150 last->setChased(true);
151 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last));
152 *chase.append() = last;
    [all...]
  /external/skia/src/utils/
SkParseColor.cpp 24 // !!! the bit to end the word (last) is at the low bit for binary search
191 bool last = false; local
206 if (len <= 6) { // last
208 last = true;
213 } while (last == false);
375 bool last = false; local
397 last = ch < 'a' || ch > 'z';
398 if (last)
402 } while (last == false && len > 0);
413 if ((*sixMatchPtr & 1) == 0) { // last
    [all...]
  /external/skia/tests/
PathOpsTestCommon.cpp 121 int last = inflections - 1; local
122 for (int idx = 0; idx < last; ++idx) {
126 part = cubic->subDivide(inflectT[last], 1);
127 addTs(part, precision, inflectT[last], 1, ts);
  /external/tremolo/Tremolo/
floor0.c 253 /* the last coefficient */
414 ogg_int32_t last=0; local
419 for(k=0;k<b->dim;k++,j++)lsp[j]+=last;
420 last=lsp[j-1];
  /external/v8/src/compiler/
move-optimizer.cc 172 ParallelMove* last = local
174 USE(last);
177 (first != nullptr && (last == nullptr || last->empty())));
210 // Ensure that the last instruction in all incoming blocks don't contain
  /external/v8/src/
transitions.cc 319 int last = NumberOfPrototypeTransitions(*cache); local
320 int entry = header + last;
323 SetNumberOfPrototypeTransitions(*cache, last + 1);
  /external/v8/test/cctest/compiler/
test-instruction.cc 116 BasicBlock* last = R.schedule.start(); local
119 R.schedule.AddGoto(last, block);
120 last = block;
  /external/v8/tools/oom_dump/
oom_dump.cc 141 const u_int64_t last = memory_region->GetBase() + memory_region->GetSize(); local
144 for (u_int64_t addr = esp; addr < last; addr += 4) {
147 if (value >= esp && value < last) {
  /external/valgrind/coregrind/m_debuginfo/
tytypes.c 344 Word first, last; local
384 found = VG_(lookupXA)( ents, &key, &first, &last );
385 //found = VG_(lookupXA_UNBOXED)( ents, cuOff_to_find, &first, &last,
391 vg_assert(first == last);
  /external/valgrind/memcheck/tests/
unit_oset.c 158 // when we reset after the last elt.
434 Addr last; member in struct:__anon26188
444 sprintf(buf, "<(%d) %lu..%lu (%d)>", b->b1, b->first, b->last, b->b2);
453 assert(elem->first <= elem->last);
455 if (key > elem->last) return 1;
486 vs[i]->last = vs[i]->first + 2;
536 prev.last = 0;
540 assert(prev.last < curr.first);
  /external/webp/src/dsp/
filters_sse2.c 74 __m128i last = _mm_set_epi32(0, 0, 0, dst[-1]); local
77 const __m128i A1 = _mm_add_epi8(A0, last);
85 last = _mm_srli_epi64(A7, 56);
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 173 std::string::size_type last = s.find_last_not_of(drop); local
175 if (first == std::string::npos || last == std::string::npos)
178 return s.substr(first, last - first + 1);
  /external/webrtc/webrtc/base/
stringencode.cc 457 // Don't write a delimiter after the last byte.
560 size_t last = 0; local
563 if (i != last) {
564 fields->push_back(source.substr(last, i - last));
566 last = i + 1;
569 if (last != source.length()) {
570 fields->push_back(source.substr(last, source.length() - last));
579 size_t last = 0 local
653 size_t last = 0; local
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
screen_capturer_x11.cc 111 // current with the last buffer used.
402 DesktopFrame* last = queue_.previous_frame(); local
403 RTC_DCHECK(current != last);
406 current->CopyPixelsFrom(*last, it.rect().top_left(), it.rect());
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_h264_unittest.cc 91 bool last = false; local
94 ASSERT_TRUE(packetizer->NextPacket(packet.get(), &length, &last));
96 EXPECT_EQ(i == expected_sizes.size() - 1, last) << "FUA index: " << i;
100 EXPECT_FALSE(packetizer->NextPacket(packet.get(), &length, &last));
164 bool last = false;
165 ASSERT_TRUE(packetizer->NextPacket(packet, &length, &last));
167 EXPECT_TRUE(last);
170 EXPECT_FALSE(packetizer->NextPacket(packet, &length, &last));
194 bool last = false; local
195 ASSERT_TRUE(packetizer->NextPacket(packet, &length, &last));
231 bool last = false; local
266 bool last = false; local
318 bool last = false; local
    [all...]
rtp_format_vp9_unittest.cc 152 bool last) {
156 EXPECT_EQ(last, payload_pos_ == payload_size_);
164 bool last = false; local
166 EXPECT_FALSE(packetizer_->NextPacket(packet_.get(), &length, &last));
170 EXPECT_TRUE(packetizer_->NextPacket(packet_.get(), &length, &last));
174 hdr.end_of_frame = last;
176 CheckPayload(packet_.get(), expected_hdr_sizes[i], length, last);
178 EXPECT_TRUE(last);
rtp_sender_video.cc 272 bool last = false; local
273 while (!last) {
277 &payload_bytes_in_packet, &last)) {
281 // Set marker bit true if this is the last packet in frame.
283 dataBuffer, payloadType, last, captureTimeStamp, capture_time_ms);
288 // onto the last RTP packet in each group of packets which make up a key
290 // (HEVC)). The MTSI client may also add the payload bytes onto the last RTP

Completed in 3421 milliseconds

<<11121314151617181920>>