Searched refs:rs (Results 1 - 25 of 320) sorted by relevance

1234567891011>>

/external/fec/
H A Dinit_rs.c13 #include "rs-common.h"
16 struct rs *rs = (struct rs *)p; local
18 free(rs->alpha_to);
19 free(rs->index_of);
20 free(rs->genpoly);
21 free(rs);
34 struct rs *rs; local
[all...]
H A Dinit_rs_char.c9 #include "rs-common.h"
12 struct rs *rs = (struct rs *)p; local
14 free(rs->alpha_to);
15 free(rs->index_of);
16 free(rs->genpoly);
17 free(rs);
30 struct rs *rs; local
[all...]
H A Dinit_rs_int.c9 #include "rs-common.h"
12 struct rs *rs = (struct rs *)p; local
14 free(rs->alpha_to);
15 free(rs->index_of);
16 free(rs->genpoly);
17 free(rs);
30 struct rs *rs; local
[all...]
H A Dchar.h8 #define MODNN(x) modnn(rs,x)
10 #define MM (rs->mm)
11 #define NN (rs->nn)
12 #define ALPHA_TO (rs->alpha_to)
13 #define INDEX_OF (rs->index_of)
14 #define GENPOLY (rs->genpoly)
15 #define NROOTS (rs->nroots)
16 #define FCR (rs->fcr)
17 #define PRIM (rs->prim)
18 #define IPRIM (rs
[all...]
H A Dint.h8 #define MODNN(x) modnn(rs,x)
10 #define MM (rs->mm)
11 #define NN (rs->nn)
12 #define ALPHA_TO (rs->alpha_to)
13 #define INDEX_OF (rs->index_of)
14 #define GENPOLY (rs->genpoly)
15 #define NROOTS (rs->nroots)
16 #define FCR (rs->fcr)
17 #define PRIM (rs->prim)
18 #define IPRIM (rs
[all...]
H A Dinit_rs.h11 rs = NULL;
26 rs = (struct rs *)calloc(1,sizeof(struct rs));
27 if(rs == NULL)
30 rs->mm = symsize;
31 rs->nn = (1<<symsize)-1;
32 rs->pad = pad;
34 rs->alpha_to = (data_t *)malloc(sizeof(data_t)*(rs
36 free(rs); variable
43 free(rs); variable
64 free(rs); variable
74 free(rs); variable
[all...]
H A Drs-common.h7 struct rs { struct
20 static inline int modnn(struct rs *rs,int x){ argument
21 while (x >= rs->nn) {
22 x -= rs->nn;
23 x = (x >> rs->mm) + (x & rs->nn);
H A Dencode_rs_char.c8 #include "rs-common.h"
11 struct rs *rs = (struct rs *)p; local
H A Dencode_rs_int.c8 #include "rs-common.h"
11 struct rs *rs = (struct rs *)p; local
H A Ddecode_rs_char.c13 #include "rs-common.h"
17 struct rs *rs = (struct rs *)p; local
H A Ddecode_rs_int.c13 #include "rs-common.h"
17 struct rs *rs = (struct rs *)p; local
H A Dgen_ccsds.c9 #include "rs-common.h"
13 struct rs *rs; local
16 rs = init_rs_char(8,0x187,112,11,32,0); /* CCSDS standard */
17 assert(rs != NULL);
22 printf("0x%02x,",rs->alpha_to[i]);
28 printf("%3d,",rs->index_of[i]);
35 printf("%3d,",rs->genpoly[i]);
/external/syslinux/com32/lib/pci/
H A Dbios.c7 com32sys_t rs; local
8 memset(&rs, 0, sizeof rs);
9 rs.eax.w[0] = call;
10 rs.ebx.w[0] = a >> 8; /* bus:device:function */
11 rs.edi.b[0] = a; /* address:reg */
12 rs.ecx.l = v;
13 rs.eflags.l = EFLAGS_CF;
14 __intcall(0x1a, &rs, &rs);
[all...]
/external/libunwind/src/x86_64/
H A DGstash_frame.c29 tdep_stash_frame (struct dwarf_cursor *d, struct dwarf_reg_state *rs) argument
37 rs->reg[DWARF_CFA_REG_COLUMN].where,
38 rs->reg[DWARF_CFA_REG_COLUMN].val,
39 rs->reg[DWARF_CFA_OFF_COLUMN].val,
41 rs->reg[RBP].where, rs->reg[RBP].val, DWARF_GET_LOC(d->loc[RBP]),
42 rs->reg[RSP].where, rs->reg[RSP].val, DWARF_GET_LOC(d->loc[RSP]));
50 && (rs->reg[DWARF_CFA_REG_COLUMN].where == DWARF_WHERE_REG)
51 && (rs
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_draw.c76 struct nv50_render_stage *rs = CALLOC_STRUCT(nv50_render_stage); local
78 rs->nv50 = nv50;
79 rs->stage.draw = nv50->draw;
80 rs->stage.destroy = nv50_render_destroy;
81 rs->stage.point = nv50_render_point;
82 rs->stage.line = nv50_render_line;
83 rs->stage.tri = nv50_render_tri;
84 rs->stage.flush = nv50_render_flush;
85 rs->stage.reset_stipple_counter = nv50_render_reset_stipple_counter;
87 return &rs
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_draw.c76 struct nvc0_render_stage *rs = CALLOC_STRUCT(nvc0_render_stage); local
78 rs->nvc0 = nvc0;
79 rs->stage.draw = nvc0->draw;
80 rs->stage.destroy = nvc0_render_destroy;
81 rs->stage.point = nvc0_render_point;
82 rs->stage.line = nvc0_render_line;
83 rs->stage.tri = nvc0_render_tri;
84 rs->stage.flush = nvc0_render_flush;
85 rs->stage.reset_stipple_counter = nvc0_render_reset_stipple_counter;
87 return &rs
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_rasterpos.c135 struct rastpos_stage *rs = rastpos_stage(stage); local
136 struct gl_context *ctx = rs->ctx;
183 struct rastpos_stage *rs = ST_CALLOC_STRUCT(rastpos_stage); local
186 rs->stage.draw = draw;
187 rs->stage.next = NULL;
188 rs->stage.point = rastpos_point;
189 rs->stage.line = rastpos_line;
190 rs->stage.tri = rastpos_tri;
191 rs->stage.flush = rastpos_flush;
192 rs
227 struct rastpos_stage *rs; local
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_debug.c40 { "rs", DBG_RS, "Log rasterizer" },
62 void r500_dump_rs_block(struct r300_rs_block *rs) argument
68 count = rs->inst_count & 0xf;
71 it_count = rs->count & 0x7f;
72 ic_count = (rs->count >> 7) & 0xf;
79 if (rs->inst[i] & 0x10) {
80 ip = rs->inst[i] & 0xf;
82 ip, (rs->inst[i] >> 5) & 0x7f);
84 tex_ptr = rs->ip[ip] & 0xffffff;
100 if (rs
[all...]
/external/clang/test/Analysis/
H A DMemRegion.cpp25 ReqStruct rs; local
26 MPI_Request *r = &rs.req;
27 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req' has no matching nonblocking call.}}
34 ReqStruct rs; local
35 MPI_Request *r = &rs.req[0][1];
36 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req[0][1]' has no matching nonblocking call.}}
44 ReqStruct rs; local
45 MPI_Request *r = &rs.req.req;
46 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req.req' has no matching nonblocking call.}}
/external/valgrind/none/tests/mips64/
H A Dlogical_instructions.stdout.exp1 and $t0, $t1, $t2 :: rd 0x0, rs 0x0, rt 0xffffffffb1f740b4
2 and $s0, $s1, $s2 :: rd 0x1284020, rs 0x12bd6aa, rt 0xa2a6ec661ba84121
3 and $t0, $t1, $t2 :: rd 0x0, rs 0x0, rt 0xffffffffb5365d03
4 and $s0, $s1, $s2 :: rd 0x4c834002122303, rs 0x7e876382d2ab13, rt 0x614d9b445f12236b
5 and $t0, $t1, $t2 :: rd 0x8003b4a, rs 0x9823b6e, rt 0xffffffffb8757bda
6 and $s0, $s1, $s2 :: rd 0x1328080203050071, rs 0x976d6e9ac31510f3, rt 0x3baa99471f6d4d75
7 and $t0, $t1, $t2 :: rd 0xc002649, rs 0xd4326d9, rt 0xffffffffbcb4666d
8 and $s0, $s1, $s2 :: rd 0x20044c571216a462, rs 0xb7746d775ad6a5fb, rt 0x680cce5fb236b666
9 and $t0, $t1, $t2 :: rd 0x2003648, rs 0x130476dc, rt 0xffffffffa2f33668
10 and $s0, $s1, $s2 :: rd 0x40a040000401a502, rs
[all...]
H A Dcvm_ins.stdout.exp1 exts $t1, $t2, 1, 7 :: rt 0x0 rs 0x0, p 0x00000001, lenm1 0x00000007
2 exts $t1, $t2, 1, 7 :: rt 0x6e rs 0x130476dc, p 0x00000001, lenm1 0x00000007
3 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffdc rs 0x2608edb8, p 0x00000001, lenm1 0x00000007
4 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffb2 rs 0x350c9b64, p 0x00000001, lenm1 0x00000007
5 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffb8 rs 0x4c11db70, p 0x00000001, lenm1 0x00000007
6 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffd6 rs 0x5f15adac, p 0x00000001, lenm1 0x00000007
7 exts $t1, $t2, 1, 7 :: rt 0x64 rs 0x6a1936c8, p 0x00000001, lenm1 0x00000007
8 exts $t1, $t2, 1, 7 :: rt 0xa rs 0x791d4014, p 0x00000001, lenm1 0x00000007
9 exts $t1, $t2, 1, 7 :: rt 0x70 rs 0x9823b6e0, p 0x00000001, lenm1 0x00000007
10 exts $t1, $t2, 1, 7 :: rt 0x1e rs
[all...]
/external/caliper/lib/
H A Djsr311-api-1.1.1.jar ... -INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ javax/ws/rs/ext/ javax/ws ...
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteStatement.java51 ResultSet rs;
53 rs = actualDBstatement.executeQuery();
54 rs.next();
55 return rs.getLong(1);
64 ResultSet rs;
66 rs = actualDBstatement.executeQuery();
67 rs.next();
68 return rs.getString(1);
/external/llvm/test/MC/Mips/mips32r6/
H A Dvalid.s4 # rs == 0
5 # rs != 0
8 # rs < rt
9 # rs == rt
10 # rs > rt
36 # beqc requires rs < rt && rs != 0 but we accept this and fix it. See also bovc.
40 # bnec requires rs < rt && rs != 0 but we accept this and fix it. See also bnvc.
59 # bnvc requires that rs >
[all...]
/external/llvm/test/MC/Mips/mips64r6/
H A Dvalid.s4 # rs == 0
5 # rs != 0
8 # rs < rt
9 # rs == rt
10 # rs > rt
36 # beqc requires rs < rt && rs != 0 but we accept this and fix it. See also bovc.
54 # bnec requires rs < rt && rs != 0 but we accept this and fix it. See also bnvc.
59 # bnvc requires that rs >
[all...]

Completed in 1192 milliseconds

1234567891011>>