OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_a
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/builtins/
divdi3.c
23
di_int
s_a
= a >> bits_in_dword_m1; /*
s_a
= a < 0 ? -1 : 0 */
local
25
a = (a ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
27
s_a
^= s_b; /*sign of quotient */
28
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 */
36
return ((su_int)a/(su_int)b ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
divti3.c
25
ti_int
s_a
= a >> bits_in_tword_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 (__udivmodti4(a, b, (tu_int*)0) ^
s_a
) -
s_a
; /* negate if
s_a
== -1 */
/external/valgrind/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;
/external/llvm/test/MC/COFF/
section.s
30
.section
s_a
,"a"; .long 1
59
// CHECK: Name:
s_a
/external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c
568
float c_a = (float) cos(a),
s_a
= (float) sin(a);
local
594
pos[0] += (-dx * c_a - dy *
s_a
);
595
pos[1] += (-dx *
s_a
+ dy * c_a);
598
pos[0] += (-dx * c_a - -dy *
s_a
);
599
pos[1] += (-dx *
s_a
+ -dy * c_a);
602
pos[0] += ( dx * c_a - dy *
s_a
);
603
pos[1] += ( dx *
s_a
+ dy * c_a);
606
pos[0] += ( dx * c_a - -dy *
s_a
);
607
pos[1] += ( dx *
s_a
+ -dy * c_a);
610
pos[0] += (-dx * c_a - dy *
s_a
);
[
all
...]
Completed in 93 milliseconds