Searched defs:flip (Results 1 - 25 of 61) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
H A DBoundType.java33 BoundType flip() {
42 BoundType flip() {
54 abstract BoundType flip(); method in class:BoundType
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DValPixConverter.java29 public static float valToPix(double val, double min, double max, float lengthPix, boolean flip) { argument
38 if(flip) {
60 * @param flip True if the axis should be reversed before calculated. This is the case
64 public static double pixToVal(float pix, double min, double max, float lengthPix, boolean flip) { argument
73 if(flip) {
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java85 boolean flip = ((TextureKey)info.getKey()).isFlipY();
89 Image img = load(in, flip);
104 * @param flip
112 public static Image load(InputStream in, boolean flip) throws IOException { argument
153 if ((imageDescriptor & 32) != 0) // bit 5 : if 1, flip top/bottom ordering
154 flip = !flip;
155 if ((imageDescriptor & 16) != 0) // bit 4 : if 1, flip left/right ordering
222 if (!flip)
242 if (!flip)
[all...]
H A DHDRLoader.java116 private short flip(int in){ method in class:HDRLoader
319 boolean flip = ((TextureKey) info.getKey()).isFlipY();
323 Image img = load(in, flip);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
H A Dintel_regions.c377 bool flip,
389 if (flip)
370 intel_region_copy(struct intel_context *intel, struct intel_region *dst, GLuint dst_offset, GLuint dstx, GLuint dsty, struct intel_region *src, GLuint src_offset, GLuint srcx, GLuint srcy, GLuint width, GLuint height, bool flip, GLenum logicop) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
H A Dintel_regions.c377 bool flip,
389 if (flip)
370 intel_region_copy(struct intel_context *intel, struct intel_region *dst, GLuint dst_offset, GLuint dstx, GLuint dsty, struct intel_region *src, GLuint src_offset, GLuint srcx, GLuint srcy, GLuint width, GLuint height, bool flip, GLenum logicop) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
H A Dintel_regions.c377 bool flip,
389 if (flip)
370 intel_region_copy(struct intel_context *intel, struct intel_region *dst, GLuint dst_offset, GLuint dstx, GLuint dsty, struct intel_region *src, GLuint src_offset, GLuint srcx, GLuint srcy, GLuint width, GLuint height, bool flip, GLenum logicop) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
58 public float getMinXPosition(FlipInfo flip) { argument
60 if (flip != null && flip.flipX) {
62 value = flip.parentWidth - maxX;
69 public float getMaxXPosition(FlipInfo flip) { argument
71 if (flip != null && flip.flipX) {
73 value = flip.parentWidth - minX;
80 public float getMinYPosition(FlipInfo flip) { argument
91 getMaxYPosition(FlipInfo flip) argument
[all...]
H A DAABoxCollisionVolume.java73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
75 final float left = getMinXPosition(flip) + position.x;
76 final float right = getMaxXPosition(flip) + position.x;
77 final float bottom = getMinYPosition(flip) + position.y;
78 final float top = getMaxYPosition(flip) + position.y;
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
94 offsetByCenter(mWorkspaceVector, mCenter, flip);
159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { argument
160 if (flip != null && (flip.flipX || flip.flipY)) {
161 if (flip.flipX) {
162 position.x += flip.parentWidth - center.x;
167 if (flip
[all...]
/external/v8/test/mjsunit/es6/
H A Dproxies-example-membrane.js170 function flip(dir) { return (dir + 1) % 2 }
189 obj, wrap(flip(dir), that),
190 args.map((x) => wrap(flip(dir), x))));
199 obj, args.map((x) => wrap(flip(dir), x)),
200 wrap(flip(dir), newt)));
209 obj, ...(args.map((x) => wrap(flip(dir), x)))))
219 maps[flip(dir)].set(wrapper, obj);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java54 static int flip(int value) { method in class:UnsignedInts
68 return Ints.compare(flip(a), flip(b));
88 int min = flip(array[0]);
90 int next = flip(array[i]);
95 return flip(min);
108 int max = flip(array[0]);
110 int next = flip(array[i]);
115 return flip(max);
H A DUnsignedLongs.java59 * longs, that is, {@code a <= b} as unsigned longs if and only if {@code flip(a) <= flip(b)}
62 private static long flip(long a) { method in class:UnsignedLongs
76 return Longs.compare(flip(a), flip(b));
89 long min = flip(array[0]);
91 long next = flip(array[i]);
96 return flip(min);
109 long max = flip(array[0]);
111 long next = flip(arra
[all...]
/external/minijail/
H A Dbpf.c131 int flip = 0; local
140 flip = 0;
144 flip = 1;
148 flip = 0;
159 unsigned char jt = flip ? NEXT : SKIP;
160 unsigned char jf = flip ? SKIP : NEXT;
/external/skia/src/pathops/
H A DSkIntersections.cpp28 void SkIntersections::flip() { function in class:SkIntersections
H A DSkPathOpsQuad.h43 SkDQuad flip() const { function in struct:SkDQuad
H A DSkPathOpsConic.h34 SkDConic flip() const { function in struct:SkDConic
/external/llvm/include/llvm/ADT/
H A DBitVector.h217 // Set, reset, flip
298 BitVector &flip() { function in class:llvm::BitVector
305 BitVector &flip(unsigned Idx) { function in class:llvm::BitVector
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c176 float flip = -1.0; local
185 float fy = flip * viewport->scale[1] * -1.0 + viewport->translate[1];
187 float fh = flip * viewport->scale[1] * 2;
338 * less than zmin. Detect that case, flip the depth range and
/external/webrtc/talk/media/base/
H A Dyuvframegenerator.cc265 int height, bool flip) {
267 if (flip) {
264 DrawEanEncodedDigit(int digit, int x, int y, int height, bool flip) argument
/external/libvncserver/test/
H A Dbmp.c89 int w, int h, int flip)
94 srcptr=flip? &srcbuf[srcpitch*(h-1)]:srcbuf;
96 srcptr+=flip? -srcpitch:srcpitch, dstptr+=dstpitch)
87 pixelconvert(unsigned char *srcbuf, enum BMPPIXELFORMAT srcformat, int srcpitch, unsigned char *dstbuf, enum BMPPIXELFORMAT dstformat, int dstpitch, int w, int h, int flip) argument
/external/skia/src/opts/
H A DSkNx_sse.h272 // There's no unsigned _mm_cmplt_epu8, so we flip the sign bits then use a signed compare.
273 auto flip = _mm_set1_epi8(char(0x80)); local
274 return _mm_cmplt_epi8(_mm_xor_si128(flip, fVec), _mm_xor_si128(flip, o.fVec));

Completed in 752 milliseconds

123