/aosp_15_r20/prebuilts/go/linux-x86/src/math/big/ |
D | arith_s390x.s | 67 VPDI $0x4, V1, V1, V1 // flip the doublewords to big-endian order 68 VPDI $0x4, V2, V2, V2 // flip the doublewords to big-endian order 72 VPDI $0x4, V9, V9, V9 // flip the doublewords to big-endian order 73 VPDI $0x4, V10, V10, V10 // flip the doublewords to big-endian order 85 VPDI $0x4, V3, V3, V3 // flip the doublewords to big-endian order 86 VPDI $0x4, V4, V4, V4 // flip the doublewords to big-endian order 87 VPDI $0x4, V11, V11, V11 // flip the doublewords to big-endian order 88 VPDI $0x4, V12, V12, V12 // flip the doublewords to big-endian order 100 VPDI $0x4, V5, V5, V5 // flip the doublewords to big-endian order 101 VPDI $0x4, V6, V6, V6 // flip the doublewords to big-endian order [all …]
|
/aosp_15_r20/external/jetpack-camera-app/app/src/androidTest/java/com/google/jetpackcamera/ |
H A D | SwitchCameraTest.kt | 59 // Press the flip camera button in <lambda>() 62 // Get lens facing after first flip in <lambda>() 65 // Press the flip camera button again in <lambda>() 68 // Get lens facing after second flip in <lambda>() 73 initialLensFacing.flip(), in <lambda>() 74 initialLensFacing.flip().flip() in <lambda>() 85 // Double click display to flip camera in <lambda>() 89 // Get lens facing after first flip in <lambda>() 92 // Double click display to flip camera again in <lambda>() 96 // Get lens facing after second flip in <lambda>() [all …]
|
/aosp_15_r20/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
H A D | ConsoleActivity.java | 94 protected ViewFlipper flip = null; field in ConsoleActivity 150 flip.removeAllViews(); 209 synchronized (flip) { in closeBridge() 213 if (flip.getDisplayedChild() == flipIndex) { in closeBridge() 216 flip.removeViewAt(flipIndex); in closeBridge() 222 final int numChildren = flip.getChildCount(); in closeBridge() 223 if (flip.getDisplayedChild() >= numChildren && numChildren > 0) { in closeBridge() 224 flip.setDisplayedChild(numChildren - 1); in closeBridge() 229 if (flip.getChildCount() == 0) { in closeBridge() 236 View view = flip.getCurrentView(); in findCurrentView() [all …]
|
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
H A D | BitSetTest.java | 487 bs2.flip(0, 128); in test_getII() 687 fail("Test1: Attempt to flip with negative index failed to generate exception"); in test_setII() 694 fail("Test2: Attempt to flip with negative index failed to generate exception"); in test_setII() 704 fail("Test4: Attempt to flip with illegal args failed to generate exception"); in test_setII() 745 bs.flip(9); in test_flipI() 746 assertFalse("Failed to flip bit", bs.get(8)); in test_flipI() 747 assertTrue("Failed to flip bit", bs.get(9)); in test_flipI() 748 assertTrue("Failed to flip bit", bs.get(10)); in test_flipI() 753 bs.flip(9); in test_flipI() 754 assertTrue("Failed to flip bit", bs.get(8)); in test_flipI() [all …]
|
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/util/ |
H A D | FluentBitSetTest.java | 168 bs.flip(0, 500); in test_cardinality() 385 "Test1: Attempt to flip with negative index failed to generate exception"); in test_clearII() 388 "Test2: Attempt to flip with negative index failed to generate exception"); in test_clearII() 395 "Test4: Attempt to flip with illegal args failed to generate exception"); in test_clearII() 539 * Tests {@link FluentBitSet#flip(int)}. 543 // Test for method void java.util.BitSet.flip(int) in test_flipI() 548 bs.flip(9); in test_flipI() 549 assertFalse(bs.get(8), "Failed to flip bit"); in test_flipI() 550 assertTrue(bs.get(9), "Failed to flip bit"); in test_flipI() 551 assertTrue(bs.get(10), "Failed to flip bit"); in test_flipI() [all …]
|
/aosp_15_r20/external/replicaisland/src/com/replica/replicaisland/ |
H A D | CollisionVolume.java | 55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, in intersects() argument 58 public float getMinXPosition(FlipInfo flip) { in getMinXPosition() argument 60 if (flip != null && flip.flipX) { in getMinXPosition() 62 value = flip.parentWidth - maxX; in getMinXPosition() 69 public float getMaxXPosition(FlipInfo flip) { in getMaxXPosition() argument 71 if (flip != null && flip.flipX) { in getMaxXPosition() 73 value = flip.parentWidth - minX; in getMaxXPosition() 80 public float getMinYPosition(FlipInfo flip) { in getMinYPosition() argument 82 if (flip != null && flip.flipY) { in getMinYPosition() 84 value = flip.parentHeight - maxY; in getMinYPosition() [all …]
|
H A D | SphereCollisionVolume.java | 85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, in intersects() argument 91 result = other.intersects(otherPosition, otherFlip, this, position, flip); in intersects() 94 offsetByCenter(mWorkspaceVector, mCenter, flip); in intersects() 159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { in offsetByCenter() argument 160 if (flip != null && (flip.flipX || flip.flipY)) { in offsetByCenter() 161 if (flip.flipX) { in offsetByCenter() 162 position.x += flip.parentWidth - center.x; in offsetByCenter() 167 if (flip.flipY) { in offsetByCenter() 168 position.y += flip.parentHeight - center.y; in offsetByCenter()
|
/aosp_15_r20/external/gemmlowp/internal/ |
H A D | simd_wrappers.h | 102 bool Flip = ShouldFlipLhsRhs<LhsType, RhsType>::kValue> 191 using Flip = FlipLhsRhs<Lhs, Rhs>; 193 typename Flip::FlippedLhsType, 194 typename Flip::FlippedRhsType>::Run(Flip::FlippedLhs(lhs, rhs), 195 Flip::FlippedRhs(lhs, rhs)); 240 using Flip = FlipLhsRhs<Lhs, Rhs>; 242 typename Flip::FlippedLhsType, 243 typename Flip::FlippedRhsType>::Run(Flip::FlippedLhs(lhs, rhs), 244 Flip::FlippedRhs(lhs, rhs)); 289 using Flip = FlipLhsRhs<Lhs, Rhs>; [all …]
|
/aosp_15_r20/external/igt-gpu-tools/tests/ |
H A D | kms_flip_tiling.c | 94 * Since a page flip to a buffer with different stride in test_flip_tiling() 123 /* Flip to the second fb. */ in test_flip_tiling() 127 * Page flip should work but some transitions may be temporarily in test_flip_tiling() 166 * Test that a page flip from a tiled buffer to a linear one works 169 * the tiled one and page flip to the linear one issued. A new crc is 173 igt_subtest_f("flip-changes-tiling") { 182 igt_subtest_f("flip-changes-tiling-Y") { 194 igt_subtest_f("flip-changes-tiling-Yf") { 207 * Test that a page flip from a tiled buffer to another tiled one works 209 * generates a reference crc for the pipe. Then a page flip to second [all …]
|
H A D | kms_cursor_legacy.c | 254 igt_set_timeout(1, "Scheduling page flip\n"); in flip_nonblocking() 256 /* Schedule a nonblocking flip for the next vblank */ in flip_nonblocking() 384 static void flip(igt_display_t *display, in flip() function 398 igt_info("Using pipe %s for page flip, pipe %s for cursor\n", in flip() 451 igt_debug("flip count=%lu\n", count); in flip() 595 igt_set_timeout(1, "Stuck page flip"); in basic_flip_cursor() 734 /* The nonblocking flip should not have delayed us */ in flip_vs_cursor() 745 igt_set_timeout(1, "Stuck page flip"); in flip_vs_cursor() 830 igt_set_timeout(1, "Stuck page flip"); in nonblocking_modeset_vs_cursor() 846 igt_set_timeout(1, "Stuck page flip"); in nonblocking_modeset_vs_cursor() [all …]
|
H A D | kms_flip.c | 570 bool flip, vblank; in check_all_state() local 572 flip = completed_events & EVENT_FLIP; in check_all_state() 575 if (flip) in check_all_state() 581 if (flip && vblank && 0) in check_all_state() 676 * It's possible that we don't have a pending flip here, in case both in run_test_step() 677 * wf-vblank and flip were scheduled and the wf-vblank event was in run_test_step() 678 * delivered earlier. The same applies to vblank events w.r.t flip. in run_test_step() 796 /* pan before the flip completes */ in run_test_step() 1337 /* We run the vblank and flip actions in parallel by default. */ in run_test_on_crtc_set() 1376 o.flip_state.name = "flip"; in run_test() [all …]
|
/aosp_15_r20/external/igt-gpu-tools/tests/intel-ci/ |
H A D | fast-feedback.testlist | 146 igt@kms_busy@basic-flip-a 147 igt@kms_busy@basic-flip-b 148 igt@kms_busy@basic-flip-c 159 igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic 160 igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy 161 igt@kms_cursor_legacy@basic-flip-after-cursor-atomic 162 igt@kms_cursor_legacy@basic-flip-after-cursor-legacy 163 igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size 164 igt@kms_cursor_legacy@basic-flip-before-cursor-atomic 165 igt@kms_cursor_legacy@basic-flip-before-cursor-legacy [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/icl/doc/ |
D | functions_symmetric_difference.qbk | 18 [[`T& T::flip(const P&)`] [__ei] [__bp] [ ] [__b] ] 19 [[`T& flip(T&, const P&)`] [__ei] [__bp] [__e] [__b] ] 44 by the function `T& flip(T&, const P& operand)`. 47 flip(y,x) 53 For icl containers flip is also availabel as memeber function 54 `T& T::flip(const P& operand)`. 59 `T& T::flip(const P&)` can be summarized in the 64 T& T::flip(const P&) ---+-------- 65 T& flip(T&, const P&) s | s 71 The next table contains complexity characteristics for functions `flip`. [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/BitSet/ |
H A D | BSMethods.java | 161 b1.flip(100, 900); in testFlipTime() 165 System.out.println("Multiple word flip Time "+total); in testFlipTime() 169 b1.flip(2, 44); in testFlipTime() 173 System.out.println("Single word flip Time "+total); in testFlipTime() 314 // Flip them on in testSetGetClearFlip() 318 testSet.flip(setBit.intValue()); in testSetGetClearFlip() 327 // Flip them off in testSetGetClearFlip() 331 testSet.flip(setBit.intValue()); in testSetGetClearFlip() 556 // Test length after flip in testLength() 560 // Flip a random range twice in testLength() [all …]
|
/aosp_15_r20/external/pytorch/test/inductor/ |
H A D | test_control_flow.py | 706 # This test will fail as flip in combination with particular input lenghts 743 # Flip only non-compiled and compare with compiled reverse=True 747 result2 = torch.flip( 749 fct, torch.flip(x, [0]), 0, reverse=False, combine_mode=combine_mode 753 result3 = torch.flip(torch.cumsum(torch.flip(x, [0]), 0), [0]) 758 # Flip only compiled and compare with non-compiled reverse=True 759 result1 = torch.flip( 761 fct, torch.flip(x, [0]), 0, reverse=False, combine_mode=combine_mode 768 result3 = torch.flip(torch.cumsum(torch.flip(x, [0]), 0), [0]) 773 # Use reverse=False, but flip both results before and after [all …]
|
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/ |
H A D | frame_buffer_utils.cc | 185 // Then perform horizontal or vertical flip if needed. in OrientBoundingBox() 190 if (params.flip == OrientParams::FlipType::kVertical) { in OrientBoundingBox() 194 if (params.flip == OrientParams::FlipType::kHorizontal) { in OrientBoundingBox() 230 // Then perform horizontal or vertical flip if needed. in OrientCoordinates() 235 if (params.flip == OrientParams::FlipType::kVertical) { in OrientCoordinates() 238 if (params.flip == OrientParams::FlipType::kHorizontal) { in OrientCoordinates() 268 absl::optional<OrientParams::FlipType> flip; in GetOrientParams() local 287 flip = OrientParams::FlipType::kVertical; in GetOrientParams() 289 flip = OrientParams::FlipType::kHorizontal; in GetOrientParams() 292 return {angle, flip}; in GetOrientParams() [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/lang/CharSequence/ |
H A D | Emptiness.java | 57 // - or there's nothing in the buffer after a flip in isEmpty() 60 // Android-changed: Cast to CharBuffer explicitly due to the variant return type of flip(). in isEmpty() 61 checkEmpty((CharBuffer) ByteBuffer.allocate(2).asCharBuffer().flip()); in isEmpty() 65 // Android-changed: Cast to CharBuffer explicitly due to the variant return type of flip(). in isEmpty() 66 checkEmpty((CharBuffer) ByteBuffer.allocateDirect(2).asCharBuffer().flip()); in isEmpty() 85 // - or when there's something in the buffer after a flip in isNotEmpty() 88 // Android-changed: Cast to CharBuffer explicitly due to the variant return type of flip(). in isNotEmpty() 89 checkNotEmpty((CharBuffer) ByteBuffer.allocate(2).asCharBuffer().append('f').flip()); in isNotEmpty() 93 // Android-changed: Cast to CharBuffer explicitly due to the variant return type of flip(). in isNotEmpty() 94 checkNotEmpty((CharBuffer) ByteBuffer.allocateDirect(2).asCharBuffer().append('f').flip()); in isNotEmpty()
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
H A D | setget_sockopt.c | 32 unsigned int flip:1; member 40 { .opt = SO_REUSEADDR, .flip = 1, }, 43 { .opt = SO_KEEPALIVE, .flip = 1, }, 45 { .opt = SO_REUSEPORT, .flip = 1, }, 49 { .opt = SO_TXREHASH, .flip = 1, }, 54 { .opt = TCP_NODELAY, .flip = 1, }, 61 { .opt = TCP_THIN_LINEAR_TIMEOUTS, .flip = 1, }, 74 { .opt = IPV6_AUTOFLOWLABEL, .flip = 1, }, 152 if (t->flip) in bpf_test_socket_sockopt() 169 if (t->flip) in bpf_test_ip_sockopt() [all …]
|
/aosp_15_r20/external/coreboot/Documentation/security/vboot/ |
H A D | list_vboot.md | 144 - Cave (Asus Chromebook Flip C302SA) 151 - Bob (Asus Chromebook Flip C101PA) 161 - Helios (ASUS Chromebook Flip C436FA) 197 - Damu (ASUS Chromebook Flip CM3 (CM3200)) 258 - Frostflow (ASUS Chromebook CM34 Flip) 285 - Veyron_Minnie (ASUS Chromebook Flip C100) 290 - Collis (Asus Chromebook Flip CX3) 291 - Copano (ASUS Chromebook Flip CX5400) 292 - Delbin (ASUS Chromebook Flip CX5) 317 - Woomax (ASUS Chromebook Flip CM5)
|
/aosp_15_r20/external/minijail/ |
H A D | bpf.c | 237 int flip = 0; in bpf_arg_comp() local 251 flip = 0; in bpf_arg_comp() 255 flip = 1; in bpf_arg_comp() 259 flip = 1; in bpf_arg_comp() 263 flip = 1; in bpf_arg_comp() 267 flip = 0; in bpf_arg_comp() 271 flip = 0; in bpf_arg_comp() 275 flip = 0; in bpf_arg_comp() 279 flip = 0; in bpf_arg_comp() 290 unsigned char jt = flip ? NEXT : SKIP; in bpf_arg_comp() [all …]
|
/aosp_15_r20/packages/apps/Nfc/tests/unit/src/com/android/nfc/handover/ |
D | HandoverDataParserTest.java | 134 payload.flip(); in testParseNokiaValidPayload() 146 payload.flip(); in testParseNokiaWithInvalidBluetoothAddress() 157 payload.flip(); in testParseNokiaWithShortPayload() 177 payload.flip(); in testParseBtOobValidShortName() 199 invalidPayload.flip(); in testParseBtOobWithInvalidPayload() 220 payload.flip(); in testParseBtOobWithLongLocalName() 240 payload.flip(); in testParseBtOobWith16BitUuidsPartial() 262 payload.flip(); in testParseBtOobWithClassOfDevice() 282 payload.flip(); in testParseBtOobWithUnknownType() 308 payload.flip(); in testParseBleOobWithCentralRoleOnly() [all …]
|
/aosp_15_r20/external/guava/guava/src/com/google/common/primitives/ |
H A D | UnsignedLongs.java | 59 * longs, that is, {@code a <= b} as unsigned longs if and only if {@code flip(a) <= flip(b)} as 62 private static long flip(long a) { in flip() method in UnsignedLongs 79 return Longs.compare(flip(a), flip(b)); in compare() 92 long min = flip(array[0]); in min() 94 long next = flip(array[i]); in min() 99 return flip(min); in min() 112 long max = flip(array[0]); in max() 114 long next = flip(array[i]); in max() 119 return flip(max); in max() 200 array[i] = flip(array[i]); in sort() [all …]
|
/aosp_15_r20/external/guava/android/guava/src/com/google/common/primitives/ |
H A D | UnsignedLongs.java | 59 * longs, that is, {@code a <= b} as unsigned longs if and only if {@code flip(a) <= flip(b)} as 62 private static long flip(long a) { in flip() method in UnsignedLongs 79 return Longs.compare(flip(a), flip(b)); in compare() 92 long min = flip(array[0]); in min() 94 long next = flip(array[i]); in min() 99 return flip(min); in min() 112 long max = flip(array[0]); in max() 114 long next = flip(array[i]); in max() 119 return flip(max); in max() 200 array[i] = flip(array[i]); in sort() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
H A D | KnownBits.cpp | 136 // Flip the range of values: [0, 0xFFFFFFFF] <-> [0xFFFFFFFF, 0] in umin() 137 auto Flip = [](const KnownBits &Val) { return KnownBits(Val.One, Val.Zero); }; in umin() local 138 return Flip(umax(Flip(LHS), Flip(RHS))); in umin() 142 // Flip the range of values: [-0x80000000, 0x7FFFFFFF] <-> [0, 0xFFFFFFFF] in smax() 143 auto Flip = [](const KnownBits &Val) { in smax() local 151 return Flip(umax(Flip(LHS), Flip(RHS))); in smax() 155 // Flip the range of values: [-0x80000000, 0x7FFFFFFF] <-> [0xFFFFFFFF, 0] in smin() 156 auto Flip = [](const KnownBits &Val) { in smin() local 164 return Flip(umax(Flip(LHS), Flip(RHS))); in smin()
|
/aosp_15_r20/external/skia/src/sksl/generated/ |
H A D | sksl_rt_shader.unoptimized.sksl | 63 " flip){half4 aggregate=max(flip*child.eval(coord+float2(offset)),flip*child" 64 ".eval(coord-float2(offset)));return flip*aggregate;}half4 sk_linear_morphology" 65 "(shader child,float2 coord,half2 offset,half flip,int radius){const int kMaxLinearRadius" 66 "=14;half4 aggregate=flip*child.eval(coord);half2 delta=offset;for(int i=1;i" 67 "<=kMaxLinearRadius;++i){if(i>radius)break;aggregate=max(aggregate,max(flip*" 68 "child.eval(coord+float2(delta)),flip*child.eval(coord-float2(delta))));delta" 69 "+=offset;}return flip*aggregate;}half4 sk_overdraw(half alpha,half4 color0,"
|