Home
last modified time | relevance | path

Searched refs:src_line (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/x86/
Davg_intrin_sse2.c294 const __m128i src_line = load_tran_low(coeff); in vpx_satd_sse2() local
295 const __m128i inv = _mm_sub_epi16(zero, src_line); in vpx_satd_sse2()
296 const __m128i abs = _mm_max_epi16(src_line, inv); // abs(src_line) in vpx_satd_sse2()
318 __m128i src_line = _mm_loadu_si128((const __m128i *)ref); in vpx_int_pro_row_sse2() local
319 __m128i s0 = _mm_unpacklo_epi8(src_line, zero); in vpx_int_pro_row_sse2()
320 __m128i s1 = _mm_unpackhi_epi8(src_line, zero); in vpx_int_pro_row_sse2()
326 src_line = _mm_loadu_si128((const __m128i *)ref); in vpx_int_pro_row_sse2()
327 t0 = _mm_unpacklo_epi8(src_line, zero); in vpx_int_pro_row_sse2()
328 t1 = _mm_unpackhi_epi8(src_line, zero); in vpx_int_pro_row_sse2()
333 src_line = _mm_loadu_si128((const __m128i *)ref); in vpx_int_pro_row_sse2()
[all …]
/external/v8/src/profiler/
Dprofile-generator.cc216 void ProfileNode::IncrementLineTicks(int src_line) { in IncrementLineTicks() argument
217 if (src_line == v8::CpuProfileNode::kNoLineNumberInfo) return; in IncrementLineTicks()
221 line_ticks_.LookupOrInsert(reinterpret_cast<void*>(src_line), src_line); in IncrementLineTicks()
319 int src_line, bool update_stats) { in AddPathFromEnd() argument
332 if (src_line != v8::CpuProfileNode::kNoLineNumberInfo) { in AddPathFromEnd()
333 node->IncrementLineTicks(src_line); in AddPathFromEnd()
407 const std::vector<CodeEntry*>& path, int src_line, in AddPath() argument
410 top_down_.AddPathFromEnd(path, src_line, update_stats); in AddPath()
628 int src_line, bool update_stats) { in AddPathToCurrentProfiles() argument
634 current_profiles_[i]->AddPath(timestamp, path, src_line, update_stats); in AddPathToCurrentProfiles()
[all …]
Dprofile-generator.h181 void IncrementLineTicks(int src_line);
233 int src_line = v8::CpuProfileNode::kNoLineNumberInfo,
275 int src_line, bool update_stats);
351 int src_line, bool update_stats);
/external/pdfium/core/fxcodec/codec/
Dfx_codec_progress.cpp1765 int32_t src_line, in Resample() argument
1772 if (src_line >= src_top) { in Resample()
1774 int src_row = src_line - src_top; in Resample()
2285 uint8_t* src_line = (uint8_t*)pClipBitmap->GetScanline(row); in ContinueDecode() local
2288 uint8_t _a = 255 - src_line[3]; in ContinueDecode()
2289 uint8_t b = (src_line[0] * src_line[3] + 0xFF * _a) / 255; in ContinueDecode()
2290 uint8_t g = (src_line[1] * src_line[3] + 0xFF * _a) / 255; in ContinueDecode()
2291 uint8_t r = (src_line[2] * src_line[3] + 0xFF * _a) / 255; in ContinueDecode()
2293 src_line += 4; in ContinueDecode()
2301 uint8_t* src_line = (uint8_t*)pClipBitmap->GetScanline(row); in ContinueDecode() local
[all …]
Dccodec_progressivedecoder.h220 int32_t src_line,
/external/valgrind/cachegrind/
Dcg_annotate.in820 my $src_line;
823 while (($. < $high) && ($src_line = <INPUTFILE>)) {
834 print(" $src_line");
837 if ($src_line) {
/external/valgrind/callgrind/
Dcallgrind_annotate.in1147 my $src_line;
1150 while (($. < $high) && ($src_line = <INPUTFILE>)) {
1161 print(" $src_line");
1176 if ($src_line) {
/external/pdfium/samples/
Dpdfium_test.cc151 const char* src_line = buffer + (stride * h); in WritePpm() local
155 dest_line[w * 3] = src_line[(w * 4) + 2]; in WritePpm()
157 dest_line[(w * 3) + 1] = src_line[(w * 4) + 1]; in WritePpm()
159 dest_line[(w * 3) + 2] = src_line[w * 4]; in WritePpm()
/external/pdfium/core/fxge/win32/
Dfx_win32_gdipext.cpp504 LPBYTE src_line = src_scan; in StretchMonoToGray() local
507 if (!(src_line[src_x / 8] & (1 << (7 - src_x % 8)))) { in StretchMonoToGray()
511 src_line += src_pitch; in StretchMonoToGray()