OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STEP_COUNT
(Results
1 - 6
of
6
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java
20
private static final int
STEP_COUNT
= 4;
22
private static final float OPACITY_STEP = 1.0f / (
STEP_COUNT
+ 1);
39
mHistory = new BlurRecord[
STEP_COUNT
];
40
for (int x = 0; x <
STEP_COUNT
; x++) {
49
for (int x = 0; x <
STEP_COUNT
; x++) {
81
mCurrentStep = (mCurrentStep + 1) %
STEP_COUNT
;
90
final int startStep = mCurrentStep > 0 ? mCurrentStep - 1 :
STEP_COUNT
- 1;
92
for (int x = 0; x <
STEP_COUNT
; x++) {
93
final int step = (startStep - x) < 0 ? (
STEP_COUNT
+ (startStep - x)) : (startStep - x);
101
final float opacity = (
STEP_COUNT
- x) * OPACITY_STEP
[
all
...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strlen/
1-1.c
26
#define
STEP_COUNT
2000
50
for (i = 0; i < STRING_MAX_LEN; i +=
STEP_COUNT
) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strchr/
1-1.c
35
#define
STEP_COUNT
2000
65
for (i = 1; i < STRING_MAX_LEN; i +=
STEP_COUNT
) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strcpy/
1-1.c
28
#define
STEP_COUNT
2000
52
for (i = 0; i < STRING_MAX_LEN; i +=
STEP_COUNT
) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strncpy/
1-1.c
30
#define
STEP_COUNT
2000
54
for (i = 1; i < STRING_MAX_LEN; i +=
STEP_COUNT
) {
2-1.c
30
#define
STEP_COUNT
2000
54
for (i = 1; i < STRING_MAX_LEN; i +=
STEP_COUNT
) {
Completed in 3324 milliseconds