OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_a
(Results
1 - 8
of
8
) sorted by null
/frameworks/compile/libbcc/runtime/lib/
divdi3.c
25
di_int
s_a
= a >> bits_in_dword_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
27
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
29
s_a
^= s_b; /*sign of quotient */
30
return (__udivmoddi4(a, b, (du_int*)0) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
divsi3.c
25
si_int
s_a
= a >> bits_in_word_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
27
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
29
s_a
^= s_b; /* sign of quotient */
30
return (__udivsi3(a, b) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
divti3.c
27
ti_int
s_a
= a >> bits_in_tword_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
29
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
31
s_a
^= s_b; /* sign of quotient */
32
return (__udivmodti4(a, b, (tu_int*)0) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
/external/compiler-rt/lib/
divdi3.c
25
di_int
s_a
= a >> bits_in_dword_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
27
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
29
s_a
^= s_b; /*sign of quotient */
30
return (__udivmoddi4(a, b, (du_int*)0) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
divsi3.c
27
si_int
s_a
= a >> bits_in_word_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
29
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
31
s_a
^= s_b; /* sign of quotient */
38
return ((su_int)a/(su_int)b ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
divti3.c
27
ti_int
s_a
= a >> bits_in_tword_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
29
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
31
s_a
^= s_b; /* sign of quotient */
32
return (__udivmodti4(a, b, (tu_int*)0) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
/external/valgrind/main/drd/tests/
annotate_ignore_write.c
10
static int8_t
s_a
;
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;
61
/* Read s_c and modify
s_a
. */
62
s_a
= s_c;
annotate_ignore_rw.c
10
static int8_t
s_a
;
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;
Completed in 168 milliseconds