/external/guava/guava/src/com/google/common/collect/ |
H A D | BoundType.java | 33 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 D | ValPixConverter.java | 29 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 D | TGALoader.java | 85 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 D | HDRLoader.java | 116 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 D | intel_pixel_copy.c | 89 bool flip = false; local 182 flip = !flip; 188 flip = !flip; 199 width, height, flip,
|
H A D | intel_regions.c | 377 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 D | intel_pixel_copy.c | 89 bool flip = false; local 182 flip = !flip; 188 flip = !flip; 199 width, height, flip,
|
H A D | intel_regions.c | 377 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 D | intel_pixel_copy.c | 89 bool flip = false; local 182 flip = !flip; 188 flip = !flip; 199 width, height, flip,
|
H A D | intel_regions.c | 377 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 D | CollisionVolume.java | 55 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 D | AABoxCollisionVolume.java | 73 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 D | SphereCollisionVolume.java | 85 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 D | proxies-example-membrane.js | 170 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 D | UnsignedInts.java | 54 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 D | UnsignedLongs.java | 59 * 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 D | bpf.c | 131 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 D | SkIntersections.cpp | 28 void SkIntersections::flip() { function in class:SkIntersections
|
H A D | SkPathOpsQuad.h | 43 SkDQuad flip() const { function in struct:SkDQuad
|
H A D | SkPathOpsConic.h | 34 SkDConic flip() const { function in struct:SkDConic
|
/external/llvm/include/llvm/ADT/ |
H A D | BitVector.h | 217 // 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 D | svga_state_framebuffer.c | 176 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 D | yuvframegenerator.cc | 265 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 D | bmp.c | 89 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 D | SkNx_sse.h | 272 // 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));
|