Searched refs:start_value (Results 1 - 13 of 13) sorted by relevance

/external/autotest/client/common_lib/
H A Dpriorities.py9 'PFQ', 'CQ', start_value=10, step=10)
H A Denum.py27 >>> e = Enum('One', 'Two', start_value=1)
35 start_value = kwargs.get('start_value', 0)
43 value = i * step + start_value
H A Dcontrol_data.py17 CONTROL_TYPE = enum.Enum('Server', 'Client', start_value=1)
/external/webrtc/webrtc/modules/audio_device/
H A Dfine_audio_buffer_unittest.cc35 int start_value = (buffer_number * size) % SCHAR_MAX; local
37 if (buffer[i] != (i + start_value) % SCHAR_MAX) {
54 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; local
56 buffer[i] = (i + start_value) % SCHAR_MAX;
64 int start_value = (iteration * size) % SCHAR_MAX; local
66 buffer[i] = (i + start_value) % SCHAR_MAX;
77 int start_value = (iteration * bytes_per_10_ms) % SCHAR_MAX; local
79 EXPECT_EQ(buffer[i], (i + start_value) % SCHAR_MAX);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_flags_test.cc28 static void TestFlag(T start_value, const char *env, T final_value) { argument
29 T flag = start_value;
40 void TestFlag(const char *start_value, const char *env, argument
42 const char *flag = start_value;
/external/opencv3/3rdparty/libwebp/cpu-features/
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/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/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/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c375 int val, start_value, end_value; local
384 p = parse_decimal(p, q, &start_value);
388 end_value = start_value;
400 for (val = start_value; val <= end_value; val++) {
/external/webrtc/webrtc/modules/video_coding/
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/autotest/contrib/
H A Dgenerate_rpm_mapping.py37 CHROMEOS_LABS = enum.Enum('OysterBay', 'Atlantis', 'Chaos', 'Destiny', start_value=1)
/external/autotest/server/cros/dynamic_suite/
H A Dsuite.py91 start_value=1, step=1)
/external/autotest/frontend/afe/
H A Dmodels.py793 TestTime = enum.Enum('SHORT', 'MEDIUM', 'LONG', start_value=1)

Completed in 717 milliseconds