Searched defs:rs (Results 1 - 25 of 230) sorted by relevance

12345678910

/external/fec/
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]);
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 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 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 Drs_speedtest.c12 void *rs; local
20 rs = init_rs_char(8,0x187,112,11,32,0);
21 encode_rs_char(rs,block,&block[223]);
29 decode_rs_char(rs,block,NULL,0);
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 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 Dexercise.c33 #define PRINTPARM printf("(%d,%d):",rs->nn,rs->nn-rs->nroots);
43 struct rs *rs = (struct rs *)p; local
66 ENCODE_RS(rs,&block[0],&block[NN-NROOTS]);
96 derrors = DECODE_RS(rs,tblock,derrlocs,erasures);
/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/clang/test/CXX/stmt.stmt/stmt.select/stmt.if/
H A Dp2.cpp8 template <typename T, typename... Rest> void g(T &&p, Rest &&... rs) { argument
10 if constexpr(sizeof...(rs) > 0)
11 g(rs...);
/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/valgrind/none/tests/arm/
H A Dintdiv.c30 Int rs = do_sdiv32(x,y); local
31 printf( "%08x %08x -> u:%08x s:%08x\n", x, y, ru, (UInt)rs);
/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/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/eigen/Eigen/src/Householder/
H A DBlockHouseholder.h30 // Index rs = vectors.rows() - i;
38 // triFactor.col(i).head(i).noalias() = -h * vectors.block(i, 0, rs, i).adjoint()
39 // * vectors.col(i).tail(rs);
58 Index rs = vectors.rows() - i - 1; local
63 triFactor.row(i).tail(rt).noalias() = -hCoeffs(i) * vectors.col(i).tail(rs).adjoint()
64 * vectors.bottomRightCorner(rs, rt).template triangularView<UnitLower>();
/external/icu/icu4c/source/samples/layout/
H A Drsurface.cpp22 RenderingSurface *rs = (RenderingSurface *) surface; local
24 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
/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/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/syslinux/gpxe/src/hci/mucurses/
H A Dedging.c32 * @v rs right side
41 int wborder ( WINDOW *win, chtype ls, chtype rs, argument
58 _wputch(win,rs,WRAP);
/external/syslinux/libfat/
H A Dfatchain.c53 libfat_sector_t rs; local
64 rs = s - fs->data;
66 if (~rs & clustmask)
69 cluster = 2 + (rs >> fs->clustshift);

Completed in 438 milliseconds

12345678910