/device/google/contexthub/firmware/lib/builtins/ |
divdi3.c | 24 di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ local 26 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ 27 s_a ^= s_b; /*sign of quotient */
|
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/ |
divdi3.c | 70 INT64 s_b = b >> bits_in_dword_m1; // s_b = b < 0 ? -1 : 0
local 72 b = (b ^ s_b) - s_b; // negate if s_b == -1
73 s_a ^= s_b; // sign of quotient
|
divsi3.c | 71 INT32 s_b = b >> bits_in_word_m1; // s_b = b < 0 ? -1 : 0
local 73 b = (b ^ s_b) - s_b; // negate if s_b == -1
74 s_a ^= s_b; // sign of quotient
|
/external/compiler-rt/lib/builtins/ |
divdi3.c | 24 di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ local 26 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ 27 s_a ^= s_b; /*sign of quotient */
|
divsi3.c | 26 si_int s_b = b >> bits_in_word_m1; /* s_b = b < 0 ? -1 : 0 */ local 28 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ 29 s_a ^= s_b; /* sign of quotient */
|
divti3.c | 26 ti_int s_b = b >> bits_in_tword_m1; /* s_b = b < 0 ? -1 : 0 */ local 28 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ 29 s_a ^= s_b; /* sign of quotient */
|
/external/valgrind/drd/tests/ |
annotate_ignore_rw.c | 11 static int8_t s_b; variable 16 /* Read s_a and modify s_b. */ 17 s_b = s_a; 49 /* Read s_b and modify s_a. */ 50 s_a = s_b;
|
annotate_ignore_write.c | 11 static int8_t s_b; variable 16 /* Read s_a and modify s_b. */ 17 s_b = s_a; 50 /* Read s_b and modify s_a. */ 51 s_a = s_b;
|
/art/test/959-invoke-polymorphic-accessors/src/ |
Main.java | 35 public static byte s_b; field in class:Main.ValueHolder 590 tryAccessor(lookup.findStaticSetter(ValueHolder.class, "s_b", byte.class), 592 tryAccessor(lookup.findStaticGetter(ValueHolder.class, "s_b", byte.class), 594 assertTrue(ValueHolder.s_b == b); [all...] |
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
MethodHandleAccessorsTest.java | 42 public static byte s_b; field in class:MethodHandleAccessorsTest.ValueHolder 568 tryAccessor(lookup.findStaticSetter(ValueHolder.class, "s_b", byte.class), 570 tryAccessor(lookup.findStaticGetter(ValueHolder.class, "s_b", byte.class), 572 assertTrue(ValueHolder.s_b == b); [all...] |