Searched defs:start_value (Results 1 - 15 of 15) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_flags_test.cc25 static void TestFlag(T start_value, const char *env, T final_value) { argument
26 T flag = start_value;
31 static void TestStrFlag(const char *start_value, const char *env, argument
33 const char *flag = start_value;
/external/chromium_org/media/base/
H A Daudio_pull_fifo_unittest.cc37 void VerifyValue(const float data[], int size, float start_value) { argument
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/chromium_org/media/cast/test/utility/
H A Dvideo_utility.cc39 void PopulateVideoFrame(VideoFrame* frame, int start_value) { argument
52 *y_plane = static_cast<uint8>(start_value + i + j);
60 *u_plane = static_cast<uint8>(start_value + i + j);
68 *v_plane = static_cast<uint8>(start_value + i + j);
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dfine_audio_buffer_unittest.cc34 int start_value = (buffer_number * size) % SCHAR_MAX; local
36 if (buffer[i] != (i + start_value) % SCHAR_MAX) {
53 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; local
55 buffer[i] = (i + start_value) % SCHAR_MAX;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info_unittest.cc36 void FillPacket(uint8_t start_value) { argument
38 packet_buffer_[i] = start_value + i;
41 void VerifyPacket(uint8_t* start_ptr, uint8_t start_value) { argument
43 ASSERT_EQ(start_value + j, start_ptr[j]);
79 int start_value) {
87 VerifyPacket(frame_buffer_ + packet_index, start_value + i);
104 bool VerifyNalu(int offset, int packets_expected, int start_value) { argument
109 VerifyPacket(frame_buffer_ + packet_index, start_value + i);
77 VerifyPartition(int partition_id, int packets_expected, int start_value) argument
/external/chromium_org/chrome/browser/net/
H A Dfirefox_proxy_settings.cc93 size_t start_value = line.find(',', stop_key + 1); local
94 if (start_value == std::string::npos) {
99 size_t stop_value = line.find(");", start_value + 1);
105 std::string value = line.substr(start_value + 1,
106 stop_value - start_value - 1);
/external/chromium_org/remoting/base/
H A Dcompound_buffer.cc14 net::IOBuffer* buffer_value, const char* start_value, int size_value)
16 start(start_value),
13 DataChunk( net::IOBuffer* buffer_value, const char* start_value, int size_value) argument
/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.cpp104 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) argument
586 start_adress[0]=start_value;
/external/chromium_org/ash/wm/
H A Dwindow_animations.cc184 float start_value, end_value; local
186 start_value = kWindowAnimation_HideBrightnessGrayscale;
189 start_value = kWindowAnimation_ShowBrightnessGrayscale;
193 window->layer()->SetLayerBrightness(start_value);
194 window->layer()->SetLayerGrayscale(start_value);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock.cc52 const LONG start_value = 0; local
57 while (help_timer->_sync_flag == start_value) {
60 &help_timer->_sync_flag, new_value, start_value);
62 if (compare_flag != start_value) {
/external/chromium_org/ui/gfx/
H A Dinterpolated_transform.cc104 float start_value,
109 return start_value;
118 return start_value;
125 gfx::Tween::DoubleValueBetween(t, start_value, end_value));
103 ValueBetween(float time, float start_value, float end_value) const argument
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp104 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) argument
565 start_adress[0]=start_value;
/external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c355 int val, start_value, end_value; local
364 p = parse_decimal(p, q, &start_value);
368 end_value = start_value;
380 for (val = start_value; val <= end_value; val++) {
/external/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c355 int val, start_value, end_value; local
364 p = parse_decimal(p, q, &start_value);
368 end_value = start_value;
380 for (val = start_value; val <= end_value; val++) {
/external/chromium_org/media/cast/test/
H A Dend2end_unittest.cc365 int start_value; member in struct:media::cast::TestReceiverVideoCallback::ExpectedVideoFrame
374 void AddExpectedResult(int start_value, argument
380 expected_video_frame.start_value = start_value;
407 expected_video_frame.start_value);
647 void SendVideoFrame(int start_value, const base::TimeTicks& capture_time) { argument
657 PopulateVideoFrame(video_frame.get(), start_value);

Completed in 406 milliseconds