Searched refs:orient (Results 1 - 25 of 44) sorted by relevance

12

/external/pdfium/third_party/libopenjpeg20/
H A Ddwt.h76 @param orient Number that identifies the subband (0->LL, 1->HL, 2->LH, 3->HH)
77 @return Returns 0 if orient = 0, returns 1 if orient = 1 or 2, returns 2 otherwise
79 OPJ_UINT32 opj_dwt_getgain(OPJ_UINT32 orient) ;
83 @param orient Band of the wavelet function
86 OPJ_FLOAT64 opj_dwt_getnorm(OPJ_UINT32 level, OPJ_UINT32 orient);
106 @param orient Number that identifies the subband (0->LL, 1->HL, 2->LH, 3->HH)
109 OPJ_UINT32 opj_dwt_getgain_real(OPJ_UINT32 orient);
113 @param orient Band of the wavelet function
116 OPJ_FLOAT64 opj_dwt_getnorm_real(OPJ_UINT32 level, OPJ_UINT32 orient);
[all...]
H A Dt1_generate_luts.c42 static int t1_init_ctxno_zc(OPJ_UINT32 f, OPJ_UINT32 orient) argument
51 switch (orient) {
223 OPJ_UINT32 orient = j; local
224 if (orient == 2) {
225 orient = 1;
226 } else if (orient == 1) {
227 orient = 2;
229 lut_ctxno_zc[(orient << 9) | i] = t1_init_ctxno_zc(i, j);
H A Ddwt.c1228 OPJ_UINT32 opj_dwt_getgain(OPJ_UINT32 orient) argument
1230 if (orient == 0) {
1233 if (orient == 1 || orient == 2) {
1242 OPJ_FLOAT64 opj_dwt_getnorm(OPJ_UINT32 level, OPJ_UINT32 orient) argument
1247 if (orient == 0 && level >= 10) {
1249 } else if (orient > 0 && level >= 9) {
1252 return opj_dwt_norms[orient][level];
1266 OPJ_UINT32 opj_dwt_getgain_real(OPJ_UINT32 orient) argument
1268 (void)orient;
1275 opj_dwt_getnorm_real(OPJ_UINT32 level, OPJ_UINT32 orient) argument
1294 OPJ_UINT32 resno, level, orient, gain; local
[all...]
H A Dt1.c172 OPJ_UINT32 orient,
182 OPJ_UINT32 orient,
197 @param orient
206 OPJ_UINT32 orient,
1411 OPJ_UINT32 orient,
1427 w2 = opj_dwt_getnorm(level, orient);
1429 w2 = opj_dwt_getnorm_real(level, orient);
1922 OPJ_UINT32 orient,
1939 mqc->lut_ctxno_zc_orient = lut_ctxno_zc + (orient << 9);
2248 OPJ_UINT32 orient,
1407 opj_t1_getwmsedec( OPJ_INT32 nmsedec, OPJ_UINT32 compno, OPJ_UINT32 level, OPJ_UINT32 orient, OPJ_INT32 bpno, OPJ_UINT32 qmfbid, OPJ_FLOAT64 stepsize, OPJ_UINT32 numcomps, const OPJ_FLOAT64 * mct_norms, OPJ_UINT32 mct_numcomps) argument
1920 opj_t1_decode_cblk(opj_t1_t *t1, opj_tcd_cblk_dec_t* cblk, OPJ_UINT32 orient, OPJ_UINT32 roishift, OPJ_UINT32 cblksty, opj_event_mgr_t *p_manager, opj_mutex_t* p_manager_mutex, OPJ_BOOL check_pterm) argument
2246 opj_t1_encode_cblk(opj_t1_t *t1, opj_tcd_cblk_enc_t* cblk, OPJ_UINT32 orient, OPJ_UINT32 compno, OPJ_UINT32 level, OPJ_UINT32 qmfbid, OPJ_FLOAT64 stepsize, OPJ_UINT32 cblksty, OPJ_UINT32 numcomps, opj_tcd_tile_t * tile, const OPJ_FLOAT64 * mct_norms, OPJ_UINT32 mct_numcomps) argument
[all...]
/external/opencv/cv/src/
H A Dcvmotempl.cpp173 CvMat orientstub, *orient = (CvMat*)orientation; local
183 CV_CALL( orient = cvGetMat( orient, &orientstub ));
194 if( CV_MAT_TYPE( mhi->type ) != CV_32FC1 || CV_MAT_TYPE( orient->type ) != CV_32FC1 )
198 if( !CV_ARE_SIZES_EQ( mhi, mask ) || !CV_ARE_SIZES_EQ( orient, mhi ))
201 if( orient->data.ptr == mhi->data.ptr )
221 cvGetRow( orient, &orient_row, 0 );
229 orient_row.data.ptr = orient->data.ptr + y*orient->step;
260 orient_row.data.ptr = orient
296 CvMat orientstub, *orient = (CvMat*)orientation; local
[all...]
/external/libcups/filter/
H A Dcommon.h61 extern void WriteLabels(int orient);
H A Dcommon.c412 WriteLabels(int orient) /* I - Orientation of the page */ argument
420 if ((orient ^ Orientation) & 1)
431 switch (orient & 3)
H A Dpstops.c185 static void write_labels(pstops_doc_t *doc, int orient);
699 int orient = (atoi(line + 14) / 90) & 3; local
701 if (orient != Orientation)
707 Orientation = (4 - Orientation + orient) & 3;
709 Orientation = orient;
3291 int orient) /* I - Orientation of the page */
3299 if ((orient ^ Orientation) & 1)
3310 switch (orient & 3)
3290 write_labels(pstops_doc_t *doc, int orient) argument
/external/python/cpython2/Demo/tkinter/matt/
H A Dslider-demo-1.py15 orient=HORIZONTAL,
H A Dcanvas-with-scrollbars.py28 self.draw.scrollX = Scrollbar(self, orient=HORIZONTAL)
29 self.draw.scrollY = Scrollbar(self, orient=VERTICAL)
H A Danimation-w-velocity-ctrl.py20 self.speed = Scale(self, orient=HORIZONTAL, from_=-100, to=100)
H A Dpong-demo-1.py16 self.speed = Scale(self, orient=HORIZONTAL, label="ball speed",
/external/python/cpython2/Demo/tkinter/ttk/
H A Dlistbox_scrollcmd.py5 grid [ttk::scrollbar .s -command ".l yview" -orient vertical] -column 1 -row 0 -sticky ns
21 s = ttk.Scrollbar(command=l.yview, orient='vertical')
H A Dtreeview_multicolumn.py64 vsb = ttk.Scrollbar(orient="vertical", command=self.tree.yview)
65 hsb = ttk.Scrollbar(orient="horizontal", command=self.tree.xview)
H A Ddirbrowser.py68 vsb = ttk.Scrollbar(orient="vertical")
69 hsb = ttk.Scrollbar(orient="horizontal")
/external/trappy/tests/trappy/wa/
H A Dsysfs_extractor.py91 dfr = pd.DataFrame.from_items(params_items, orient="index",
/external/trappy/trappy/wa/
H A Dsysfs_extractor.py91 dfr = pd.DataFrame.from_items(params_items, orient="index",
/external/python/cpython2/Lib/idlelib/
H A DtextView.py52 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
/external/python/cpython3/Lib/idlelib/
H A Dtextview.py52 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
/external/ImageMagick/scripts/
H A Dxsnap145 scale .options.input.delay.scale -orient horizontal -length 11c \
182 scale .options.processing.colors.scale -orient horizontal -length 11c \
189 scale .options.processing.rotate.scale -orient horizontal -length 11c \
214 scale .options.output.scene.scale -orient horizontal -length 11c \
/external/freetype/src/base/
H A Dftoutln.c835 FT_Orientation orient = FT_ORIENTATION_NONE;
883 if ( orient == FT_ORIENTATION_NONE )
884 orient = o;
885 else if ( orient != o )
890 return orient;
/external/python/cpython2/Demo/turtle/
H A DturtleDemo.py71 pane = PanedWindow(orient=HORIZONTAL, sashwidth=5,
118 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
/external/python/cpython3/Lib/turtledemo/
H A D__main__.py165 pane = PanedWindow(orient=HORIZONTAL, sashwidth=5,
213 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
/external/python/cpython2/Demo/tkinter/guido/
H A Dkill.py78 self.frame.vscroll = Scrollbar(self.frame, orient=VERTICAL)
H A Dsvkill.py103 self.frame.vscroll = Scrollbar(self.frame, orient=VERTICAL)

Completed in 533 milliseconds

12