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

  /external/pdfium/third_party/libopenjpeg20/
pi.c 247 res = &comp->resolutions[pi->resno];
254 for (pi->resno = pi->poc.resno0; pi->resno < pi->poc.resno1;
255 pi->resno++) {
258 if (pi->resno >= comp->numresolutions) {
261 res = &comp->resolutions[pi->resno];
266 index = pi->layno * pi->step_l + pi->resno * pi->step_r + pi->compno *
300 res = &comp->resolutions[pi->resno];
306 for (pi->resno = pi->poc.resno0; pi->resno < pi->poc.resno1; pi->resno++)
347 OPJ_UINT32 compno, resno; local
483 OPJ_UINT32 compno, resno; local
621 OPJ_UINT32 resno; local
751 OPJ_UINT32 compno, resno; local
870 OPJ_UINT32 compno, resno; local
1367 OPJ_UINT32 compno, resno; local
1567 OPJ_UINT32 compno, resno; local
    [all...]
pi.h 91 OPJ_UINT32 resno; member in struct:opj_pi_iterator
tcd.c 51 int tileno, compno, resno, bandno, precno;/*, cblkno;*/ local
69 for (resno = 0; resno < tilec->numresolutions; resno++) {
70 opj_tcd_resolution_t *res = &tilec->resolutions[resno];
241 OPJ_UINT32 compno, resno, bandno, precno, cblkno; local
251 for (resno = 0; resno < tilec->numresolutions; resno++) {
252 opj_tcd_resolution_t *res = &tilec->resolutions[resno];
340 OPJ_UINT32 compno, resno, bandno, precno, cblkno; local
449 OPJ_UINT32 compno, resno, bandno, precno, cblkno, layno; local
725 OPJ_UINT32 compno, resno, bandno, precno, cblkno; local
1546 OPJ_UINT32 resno; local
1595 OPJ_UINT32 resno, compno, numprec = 0; local
1830 OPJ_UINT32 compno, resno, bandno, precno; local
    [all...]
t2.c 420 * l_current_pi->resno is always >= p_tile->comps[l_current_pi->compno].minimum_num_resolutions
442 l_current_pi->poc.prg1, l_current_pi->compno, l_current_pi->resno,
452 else if (l_current_pi->resno >=
460 opj_tcd_resolution_t *res = &tilec->resolutions[l_current_pi->resno];
469 l_current_pi->resno,
481 l_current_pi->compno, l_current_pi->resno,
499 l_img_comp->resno_decoded = opj_uint_max(l_current_pi->resno,
658 OPJ_UINT32 resno = pi->resno; /* resolution level value */ local
667 opj_tcd_resolution_t *res = &tilec->resolutions[resno];
    [all...]
t1.c 1581 OPJ_UINT32 resno; member in struct:__anon35316
1610 OPJ_UINT32 resno; local
1804 OPJ_UINT32 resno, bandno, precno, cblkno; local
2112 OPJ_UINT32 compno, resno, bandno, precno, cblkno; local
    [all...]
dwt.c 1294 OPJ_UINT32 resno, level, orient, gain; local
1886 OPJ_UINT32 resno, bandno, precno, cblkno; local
1942 OPJ_UINT32 resno; local
2659 OPJ_UINT32 resno; local
    [all...]
tcd.h 463 * @param resno Resolution number
474 OPJ_UINT32 resno,
j2k.c 1625 OPJ_UINT32 index, resno, compno, layno; local
10204 OPJ_UINT32 resno; local
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 484 unsigned ResNo;
486 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
487 : Matcher(CheckType), Type(type), ResNo(resno) {}
490 unsigned getResNo() const { return ResNo; }
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcher.h 500 unsigned ResNo;
502 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
503 : Matcher(CheckType), Type(type), ResNo(resno) {}
506 unsigned getResNo() const { return ResNo; }
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DAGISelMatcher.h 484 unsigned ResNo;
486 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
487 : Matcher(CheckType), Type(type), ResNo(resno) {}
490 unsigned getResNo() const { return ResNo; }
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 109 unsigned ResNo; // Which return value of the node we are using.
111 SDValue() : Node(nullptr), ResNo(0) {}
112 SDValue(SDNode *node, unsigned resno);
115 unsigned getResNo() const { return ResNo; }
126 return Node == O.Node && ResNo == O.ResNo;
132 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
184 /// Return true if there are no nodes using value ResNo of Node.
187 /// Return true if there is exactly one node using value ResNo of Node
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 128 unsigned ResNo = 0; // Which return value of the node we are using.
132 SDValue(SDNode *node, unsigned resno);
135 unsigned getResNo() const { return ResNo; }
146 return Node == O.Node && ResNo == O.ResNo;
152 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
206 /// Return true if there are no nodes using value ResNo of Node.
209 /// Return true if there is exactly one node using value ResNo of Node.
216 V.ResNo = -1U
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
SelectionDAGNodes.h 92 unsigned ResNo; // Which return value of the node we are using.
94 SDValue() : Node(0), ResNo(0) {}
95 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
98 unsigned getResNo() const { return ResNo; }
109 return Node == O.Node && ResNo == O.ResNo;
115 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
    [all...]

Completed in 1986 milliseconds