HomeSort by relevance Sort by last modified time
    Searched refs:CYCLE (Results 1 - 18 of 18) sorted by null

  /sdk/rule_api/src/com/android/ide/common/api/
DrawingStyle.java 144 * The style used to draw an invalid cycle
146 CYCLE,
  /external/quake/quake/src/QW/client/
d_ifacea.h 38 #define CYCLE 128
d_scana.s 59 andl $(CYCLE-1),%eax
60 andl $(CYCLE-1),%edx
d_scan.c 74 turb = intsintable + ((int)(cl.time*SPEED)&(CYCLE-1));
105 sturb = ((r_turb_s + r_turb_turb[(r_turb_t>>16)&(CYCLE-1)])>>16)&63;
106 tturb = ((r_turb_t + r_turb_turb[(r_turb_s>>16)&(CYCLE-1)])>>16)&63;
127 r_turb_turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
234 r_turb_s = r_turb_s & ((CYCLE<<16)-1);
235 r_turb_t = r_turb_t & ((CYCLE<<16)-1);
asm_draw.h 35 #define CYCLE 128
r_surf.c 217 Sys_Error ("R_TextureAnimation: broken cycle");
219 Sys_Error ("R_TextureAnimation: infinite cycle");
584 turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
591 s = (((j << 16) + turb[i & (CYCLE-1)]) >> 16) & 63;
592 t = (((i << 16) + turb[j & (CYCLE-1)]) >> 16) & 63;
610 turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
617 s = (((j << 16) + turb[i & (CYCLE-1)]) >> 16) & 63;
618 t = (((i << 16) + turb[j & (CYCLE-1)]) >> 16) & 63;
d_iface.h 214 #define CYCLE 128 // turbulent cycle size
r_main.c 1100 sintable[i] = AMP + sin(i*3.14159*2/CYCLE)*AMP;
1101 intsintable[i] = AMP2 + sin(i*3.14159*2/CYCLE)*AMP2; // AMP2, not 20
  /external/quake/quake/src/WinQuake/
d_ifacea.h 38 #define CYCLE 128
d_scana.s 59 andl $(CYCLE-1),%eax
60 andl $(CYCLE-1),%edx
d_scan.cpp 74 turb = intsintable + ((int)(cl.time*SPEED)&(CYCLE-1));
106 sturb = ((r_turb_s + r_turb_turb[(r_turb_t>>16)&(CYCLE-1)])>>16)&63;
107 tturb = ((r_turb_t + r_turb_turb[(r_turb_s>>16)&(CYCLE-1)])>>16)&63;
129 r_turb_turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
236 r_turb_s = r_turb_s & ((CYCLE<<16)-1);
237 r_turb_t = r_turb_t & ((CYCLE<<16)-1);
asm_draw.h 35 #define CYCLE 128
r_surf.cpp 234 Sys_Error ("R_TextureAnimation: broken cycle");
236 Sys_Error ("R_TextureAnimation: infinite cycle");
601 turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
608 s = (((j << 16) + turb[i & (CYCLE-1)]) >> 16) & 63;
609 t = (((i << 16) + turb[j & (CYCLE-1)]) >> 16) & 63;
627 turb = sintable + ((int)(cl.time*SPEED)&(CYCLE-1));
634 s = (((j << 16) + turb[i & (CYCLE-1)]) >> 16) & 63;
635 t = (((i << 16) + turb[j & (CYCLE-1)]) >> 16) & 63;
r_shared.h 37 #define SIN_BUFFER_SIZE (MAXDIMENSION+CYCLE)
d_iface.h 215 #define CYCLE 128 // turbulent cycle size
r_main.cpp 1081 sintable[i] = AMP + sin(i*3.14159*2/CYCLE)*AMP;
1082 intsintable[i] = AMP2 + sin(i*3.14159*2/CYCLE)*AMP2; // AMP2, not 20
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtDrawingStyle.java 134 * The style definition corresponding to {@link DrawingStyle#CYCLE}
136 CYCLE(new RGB(0xFF, 0x00, 0x00), 192, null, 0, 1, SWT.LINE_SOLID),
285 case CYCLE:
286 return CYCLE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 163 /** Paints a constraint cycle */
164 void paintCycle(IGraphics gc, GuidelineHandler state, List<Constraint> cycle) {
165 gc.useStyle(DrawingStyle.CYCLE);
166 assert cycle.size() > 0;
168 INode from = cycle.get(0).from.node;
179 for (Constraint constraint : cycle) {

Completed in 913 milliseconds