/external/chromium_org/media/cast/test/ |
video_utility.h | 19 void PopulateVideoFrame(VideoFrame* frame, int start_value);
|
encode_decode_test.cc | 42 void SetFrameStartValue(int start_value) { 43 PopulateVideoFrame(original_frame_.get(), start_value); 102 int start_value = 10; // Random value to start from. variable 106 PopulateVideoFrame(video_frame_, start_value); 107 test_callback_->SetFrameStartValue(start_value);
|
video_utility.cc | 30 void PopulateVideoFrame(VideoFrame* frame, int start_value) { 41 y_plane[i] = static_cast<uint8>(start_value + i); 46 u_plane[i] = static_cast<uint8>(start_value + i); 51 v_plane[i] = static_cast<uint8>(start_value + i);
|
end2end_unittest.cc | 262 int start_value; member in struct:media::cast::TestReceiverVideoCallback::ExpectedVideoFrame 271 void AddExpectedResult(int start_value, 276 expected_video_frame.start_value = start_value; 307 PopulateVideoFrame(expected_I420_frame, expected_video_frame.start_value); 426 void SendVideoFrame(int start_value, const base::TimeTicks& capture_time) { 437 PopulateVideoFrame(video_frame, start_value); [all...] |
/external/chromium_org/media/base/ |
audio_pull_fifo_unittest.cc | 37 void VerifyValue(const float data[], int size, float start_value) { 38 float value = start_value; 48 int start_value = 0; local 53 VerifyValue(audio_bus_->channel(j), frames_to_consume, start_value); 55 start_value += frames_to_consume;
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_flags_test.cc | 25 static void TestFlag(T start_value, const char *env, T final_value) { 26 T flag = start_value; 31 static void TestStrFlag(const char *start_value, const char *env, 33 const char *flag = start_value;
|
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_adapter.cc | 73 FundamentalValue start_value(start); 78 tree_id, *parend_id.get(), start_value, children); 91 FundamentalValue start_value(start); 94 tree_id, *parend_id.get(), start_value, count_value);
|
/external/chromium_org/chrome/browser/net/ |
firefox_proxy_settings.cc | 92 size_t start_value = line.find(',', stop_key + 1); local 93 if (start_value == std::string::npos) { 98 size_t stop_value = line.find(");", start_value + 1); 104 std::string value = line.substr(start_value + 1, 105 stop_value - start_value - 1);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_sequence.py | 33 start_value = 10 * self.int_32_max 34 self.assertEqual(0xA00000000, start_value) 35 self.assertEqual(None, self.seq.initial_value(start_value)) 37 self.assertEqual(start_value, self.seq.get(5)) 38 self.assertEqual(start_value + 5, self.seq.get())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_sequence.py | 33 start_value = 10 * self.int_32_max 34 self.assertEqual(0xA00000000, start_value) 35 self.assertEqual(None, self.seq.initial_value(start_value)) 37 self.assertEqual(start_value, self.seq.get(5)) 38 self.assertEqual(start_value + 5, self.seq.get())
|
/external/chromium_org/ui/gfx/ |
interpolated_transform.cc | 104 float start_value, 109 return start_value; 118 return start_value; 125 gfx::Tween::DoubleValueBetween(t, start_value, end_value));
|
interpolated_transform.h | 56 // between start_value and end_value. More precisely it returns 57 // (1 - t) * start_value + t * end_value where 59 // If time < start_time_ it returns start_value, and if time >= end_time_ 61 float ValueBetween(float time, float start_value, float end_value) const;
|
/external/chromium/chrome/browser/importer/ |
firefox_importer_utils.cc | 386 size_t start_value = line.find(',', stop_key + 1); local 387 if (start_value == std::string::npos) { 392 size_t stop_value = line.find(");", start_value + 1); 398 std::string value = line.substr(start_value + 1, 399 stop_value - start_value - 1);
|
/ndk/sources/android/cpufeatures/ |
cpu-features.c | 374 int val, start_value, end_value; local 383 p = parse_decimal(p, q, &start_value); 387 end_value = start_value; 399 for (val = start_value; val <= end_value; val++) { [all...] |
/external/chromium_org/remoting/base/ |
compound_buffer.cc | 14 net::IOBuffer* buffer_value, const char* start_value, int size_value) 16 start(start_value),
|
/external/chromium_org/ash/wm/ |
window_animations.cc | 170 float start_value, end_value; local 172 start_value = kWindowAnimation_HideBrightnessGrayscale; 175 start_value = kWindowAnimation_ShowBrightnessGrayscale; 179 window->layer()->SetLayerBrightness(start_value); 180 window->layer()->SetLayerGrayscale(start_value);
|
/external/aac/libSBRdec/src/ |
sbrdec_freq_sca.cpp | 104 static void cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress); 562 cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress) 565 start_adress[0]=start_value;
|
/external/aac/libSBRenc/src/ |
sbrenc_freq_sca.cpp | 104 static void cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress); 583 cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress) 586 start_adress[0]=start_value;
|
/external/chromium_org/chrome/browser/ui/webui/task_manager/ |
task_manager_handler.cc | 224 base::FundamentalValue start_value(group_start); 234 start_value, length_value, tasks_value);
|
/external/chromium/chrome/browser/history/ |
in_memory_url_index.cc | 815 int start_value = (kMaxSignificantStart - local 827 int raw_score = order_value + start_value + complete_value; [all...] |