Home
last modified time | relevance | path

Searched refs:source_data (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/vdpau/
Dbitmap.c165 void const *const *source_data, in vlVdpBitmapSurfacePutBitsNative() argument
177 if (!(source_data && source_pitches)) in vlVdpBitmapSurfacePutBitsNative()
188 PIPE_TRANSFER_WRITE, &dst_box, *source_data, in vlVdpBitmapSurfacePutBitsNative()
Doutput.c239 void const *const *source_data, in vlVdpOutputSurfacePutBitsNative() argument
260 PIPE_TRANSFER_WRITE, &dst_box, *source_data, in vlVdpOutputSurfacePutBitsNative()
274 void const *const *source_data, in vlVdpOutputSurfacePutBitsIndexed() argument
307 if (!source_data || !source_pitch) in vlVdpOutputSurfacePutBitsIndexed()
346 source_data[0], source_pitch[0], in vlVdpOutputSurfacePutBitsIndexed()
415 void const *const *source_data, in vlVdpOutputSurfacePutBitsYCbCr() argument
445 if (!source_data || !source_pitches) in vlVdpOutputSurfacePutBitsYCbCr()
485 source_data[i], source_pitches[i], 0); in vlVdpOutputSurfacePutBitsYCbCr()
Dsurface.c272 void const *const *source_data, in vlVdpVideoSurfacePutBitsYCbCr() argument
333 source_data[i] + source_pitches[i] * j, in vlVdpVideoSurfacePutBitsYCbCr()
/external/webrtc/webrtc/modules/video_processing/test/
Dvideo_processing_unittest.cc35 static void CropFrame(const uint8_t* source_data,
332 void CropFrame(const uint8_t* source_data, argument
344 ConvertToI420(kI420, source_data, offset_x, offset_y, source_width,
/external/v8/test/cctest/
Dtest-parsing.cc986 } source_data[] = { in TEST() local
1048 for (unsigned i = 0; i < arraysize(source_data); ++i) { in TEST()
1050 if (((source_data[i].expected & SUPER_PROPERTY) || in TEST()
1051 (source_data[i].expected == NONE)) && j != 2) { in TEST()
1056 i::StrLength(source_data[i].body); in TEST()
1059 source_data[i].body, surroundings[j].suffix); in TEST()
1084 CHECK_EQ((source_data[i].expected & ARGUMENTS) != 0, in TEST()
1086 CHECK_EQ((source_data[i].expected & SUPER_PROPERTY) != 0, in TEST()
1088 if ((source_data[i].expected & THIS) != 0) { in TEST()
1094 CHECK_EQ((source_data[i].expected & EVAL) != 0, scope->calls_eval()); in TEST()
[all …]
/external/v8/src/runtime/
Druntime-typedarray.cc42 uint8_t* source_data = reinterpret_cast<uint8_t*>(source->backing_store()); in RUNTIME_FUNCTION() local
44 CopyBytes(target_data, source_data + start, target_length); in RUNTIME_FUNCTION()