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

  /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;
  /external/llvm/test/MC/COFF/
section.s 31 .section s_b,"b"; .long 1
68 // CHECK: Name: s_b
  /external/syslinux/lzo/src/
lzo_swd.ch 157 #define s_b(s) s->b
201 lzo_memcpy(s_b(s),dict,dict_len);
216 key = HEAD3(s_b(s),node);
225 key = HEAD2(s_b(s),node);
284 s->b_wrap = s_b(s) + s->b_size;
313 lzo_memcpy(&s_b(s)[s->ip],s->c->ip,s->look);
324 s_b(s)[s->ip] = LZO_BYTE(c);
345 lzo_bytep p = &s_b(s)[s->bp+s->look];
392 s_b(s)[s->ip] = 0;
399 s_b(s)[s->ip] = LZO_BYTE(c)
    [all...]
  /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...]

Completed in 378 milliseconds