Searched refs:level (Results 201 - 225 of 1375) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DLevelTree.java42 public Level(int level, DialogEntry dialogs, String title, String time, argument
44 resource = level;
101 if (parser.getName().equals("level") && currentGroup != null) {
202 final Level level = row.get(y);
203 if (level != null && level.dialogResources != null) {
204 DialogEntry dialog = level.dialogResources;
224 final Level level = group.levels.get(y);
226 level.completed = true;
229 level
[all...]
H A DEventReporter.java20 public String level; field in class:EventReporter.Event
55 public void addEvent(int eventType, float x, float y, float time, String level, int version, long session) { argument
60 event.level = level;
91 + "&level=" + URLEncoder.encode(event.level, "UTF-8")
/external/zlib/src/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
20 Z_STREAM_ERROR if the level parameter is invalid.
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
27 int level;
46 err = deflateInit(&stream, level);
/external/libdrm/
H A Dxf86drmSL.c84 int level; member in struct:SkipList
123 int level = 1; local
128 while ((SL_RANDOM & 0x01) && level < SL_MAX_LEVEL) ++level;
129 return level;
140 list->level = 0;
177 for (i = list->level, entry = list->head; i >= 0; i--) {
191 int level; local
201 level = SLRandomLevel();
202 if (level > lis
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_miptree.c136 stride = mt->level[0].pitch;
199 mt->level[0].pitch = align(pt->width0 * blocksize, 64);
201 mt->total_size = mt->level[0].pitch * pt->height0;
224 struct nv50_miptree_level *lvl = &mt->level[l];
248 NV50_TILE_SIZE(mt->level[0].tile_mode));
286 bo_config.nv50.tile_mode = mt->level[0].tile_mode;
336 mt->level[0].pitch = stride;
337 mt->level[0].offset = 0;
338 mt->level[0].tile_mode = mt->base.bo->config.nv50.tile_mode;
345 /* Offset of zslice @z from start of level
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestStreaming.java75 byte level;
92 level = paraLevels[levelIndex];
94 logln("Testing level " + level + ", case " + i);
103 bidi.setPara(subsrc, level, null);
123 "\n\tParagraph level = " + level +
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clear.c119 if (mt->level[depth_irb->mt_level].width % 8 != 0 ||
120 mt->level[depth_irb->mt_level].height % 4 != 0) {
124 mt->level[depth_irb->mt_level].width,
125 mt->level[depth_irb->mt_level].height);
157 if (intel->gen == 6 && (mt->level[depth_irb->mt_level].width % 16) != 0)
H A Dintel_tex_validate.c125 int level; local
133 level = intel_image->base.Base.Level;
137 for (int i = 0; i < mt->level[level].depth; i++)
138 intel_miptree_slice_resolve_depth(intel, mt, level, i);
148 for (i = 0; i < mt->level[level].depth; i++) {
149 intel_miptree_get_image_offset(mt, level, face, i, &x, &y);
158 intel_miptree_get_image_offset(mt, level, face, 0, &x, &y);
161 __FUNCTION__, face, level,
[all...]
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DLevel.java35 level set.
43 * TRACE level integer value.
57 The <code>FATAL</code> level designates very severe error
63 The <code>ERROR</code> level designates error events that
68 The <code>WARN</code> level designates potentially harmful situations.
73 The <code>INFO</code> level designates informational messages
75 level. */
86 * informational events than the <code>DEBUG</code level.
104 protected Level(int level, String levelStr, int syslogEquivalent) { argument
105 super(level, levelSt
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c485 * derivatives w.r.t X and Y, then compute lambda (level of detail).
598 unsigned level = addr.bits.level; local
600 if (x < 0 || x >= (int) u_minify(texture->width0, level) ||
601 y < 0 || y >= (int) u_minify(texture->height0, level)) {
691 unsigned level = addr.bits.level; local
693 if (x < 0 || x >= (int) u_minify(texture->width0, level) ||
694 y < 0 || y >= (int) u_minify(texture->height0, level) ||
695 z < 0 || z >= (int) u_minify(texture->depth0, level)) {
710 unsigned level = addr.bits.level; local
727 unsigned level = addr.bits.level; local
750 pot_level_size(unsigned base_pot, unsigned level) argument
779 img_filter_2d_linear_repeat_POT(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
840 img_filter_2d_nearest_repeat_POT(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float rgba[TGSI_QUAD_SIZE]) argument
879 img_filter_2d_nearest_clamp_POT(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float rgba[TGSI_QUAD_SIZE]) argument
926 img_filter_1d_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float rgba[TGSI_QUAD_SIZE]) argument
963 img_filter_1d_array_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1001 img_filter_2d_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1041 img_filter_2d_array_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1090 img_filter_cube_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1130 img_filter_3d_nearest(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1169 img_filter_1d_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1206 img_filter_1d_array_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1244 img_filter_2d_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1288 img_filter_2d_array_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1333 img_filter_cube_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1378 img_filter_3d_linear(struct tgsi_sampler *tgsi_sampler, float s, float t, float p, unsigned level, unsigned face_id, enum tgsi_sampler_control control, float *rgba) argument
1534 float level = samp->view->u.tex.first_level + (int)(lod[j] + 0.5F) ; local
1629 img_filter_2d_ewa(struct tgsi_sampler *tgsi_sampler, const float s[TGSI_QUAD_SIZE], const float t[TGSI_QUAD_SIZE], const float p[TGSI_QUAD_SIZE], unsigned level, enum tgsi_sampler_control control, const float dudx, const float dvdx, const float dudy, const float dvdy, float rgba[TGSI_NUM_CHANNELS][TGSI_QUAD_SIZE]) argument
2488 sample_get_dims(struct tgsi_sampler *tgsi_sampler, int level, int dims[4]) argument
[all...]
/external/libvncserver/common/
H A Dzywrletemplate.c342 |L0L0L0L0|L0L0L0L0|H0H0H0H0|H0H0H0H0| : level 0
343 |L1L1L1L1|H1H1H1H1|H0H0H0H0|H0H0H0H0| : level 1
349 |L0H0L0H0|L0H0L0H0|L0H0L0H0|L0H0L0H0| : level 0
350 |L1H0H1H0|L1H0H1H0|L1H0H1H0|L1H0H1H0| : level 1
382 static InlineX void FilterWaveletSquare(int* pBuf, int width, int height, int level, int l) argument
389 pM = &(zywrleParam[level-1][l]);
450 static InlineX void FilterWaveletSquare(int* pBuf, int width, int height, int level, int l) argument
457 pM = zywrleParam[level-1][l];
478 static InlineX void Wavelet(int* pBuf, int width, int height, int level) argument
484 for (l = 0; l < level;
504 InvWavelet(int* pBuf, int width, int height, int level) argument
701 zywrleCalcSize(int* pW, int* pH, int level) argument
753 ZYWRLE_ANALYZE(PIXEL_T* dst, PIXEL_T* src, int w, int h, int scanline, int level, int* pBuf) argument
788 ZYWRLE_SYNTHESIZE(PIXEL_T* dst, PIXEL_T* src, int w, int h, int scanline, int level, int* pBuf) argument
[all...]
/external/markdown/markdown/extensions/
H A Dheaderid.py27 To fit within a html template's hierarchy, set the header base level:
32 >>> md = markdown.markdown(text, ['headerid(level=3)'])
82 (?P<level>\#{1,6}) # group('level') = string of hashes
108 level = len(m.group('level')) + start_level
109 if level > 6:
110 level = 6
111 h = markdown.etree.SubElement(parent, 'h%d' % level)
126 level
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLog.java83 public static boolean isLoggable(String tag, int level) { argument
84 return stream != null || level >= Log.INFO;
87 private static void addLog(int level, String tag, String msg, Throwable throwable) { argument
89 logToStream(stream, level, tag, msg, throwable);
91 logs.add(new LogItem(level, tag, msg, throwable));
95 private static void logToStream(PrintStream ps, int level, String tag, String msg, Throwable throwable) { argument
97 switch (level) {
/external/mesa3d/src/mesa/main/
H A Dtexstorage.c101 * Compute the size of the next mipmap level.
134 GLint level, levelWidth = width, levelHeight = height, levelDepth = depth; local
146 for (level = 0; level < levels; level++) {
152 _mesa_get_tex_image(ctx, texObj, faceTarget, level);
180 for (level = 0; level < levels; level++) {
182 struct gl_texture_image *texImage = texObj->Image[face][level];
212 GLint level; local
[all...]
H A Dteximage.c568 * and level parameters.
572 * \param level image level.
577 GLenum target, GLint level,
585 assert(level == 0);
587 tObj->Image[face][level] = texImage;
591 texImage->Level = level;
785 * target and mipmap level. The target and level parameters should
791 * \param level imag
576 set_tex_image(struct gl_texture_object *tObj, GLenum target, GLint level, struct gl_texture_image *texImage) argument
796 _mesa_select_tex_image(struct gl_context *ctx, const struct gl_texture_object *texObj, GLenum target, GLint level) argument
816 _mesa_get_tex_image(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, GLint level) argument
846 get_proxy_tex_image(struct gl_context *ctx, GLenum target, GLint level) argument
1277 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border) argument
1292 maxSize >>= level; /* level size */ local
1305 maxSize >>= level; local
1322 maxSize >>= level; local
1353 maxSize >>= level; local
1370 maxSize >>= level; local
1385 maxSize >>= level; local
1738 texture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border ) argument
1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument
2146 subtexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type ) argument
2211 subtexture_error_check2( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const struct gl_texture_image *destTex ) argument
2325 copytexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLint width, GLint height, GLint border ) argument
2490 copytexsubimage_error_check1( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level) argument
2539 copytexsubimage_error_check2( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, const struct gl_texture_image *teximage ) argument
2671 GLuint level, face; member in struct:cb_info
2685 const GLuint level = info->level, face = info->face; local
2715 _mesa_update_fbo_texture(struct gl_context *ctx, struct gl_texture_object *texObj, GLuint face, GLuint level) argument
2737 check_gen_mipmap(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, GLint level) argument
2803 _mesa_choose_texture_format(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, GLint level, GLenum internalFormat, GLenum format, GLenum type) argument
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
3107 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3118 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3134 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3147 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3220 texsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels ) argument
3295 _mesa_TexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels ) argument
3309 _mesa_TexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels ) argument
3325 _mesa_TexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels ) argument
3363 copyteximage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3454 _mesa_CopyTexImage1D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border ) argument
3466 _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3481 copytexsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) argument
3547 _mesa_CopyTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width ) argument
3557 _mesa_CopyTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height ) argument
3569 _mesa_CopyTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height ) argument
3594 compressed_subtexture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize) argument
3734 _mesa_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) argument
3746 _mesa_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
3758 _mesa_CompressedTexImage3DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) argument
3773 compressed_tex_sub_image(GLuint dims, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) argument
3819 _mesa_CompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data) argument
3829 _mesa_CompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) argument
3840 _mesa_CompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data) argument
[all...]
/external/libvncserver/x11vnc/
H A Dmacosx.c75 void macosx_add_mapnotify(Window win, int level, int map);
76 void macosx_add_create(Window win, int level);
77 void macosx_add_destroy(Window win, int level);
78 void macosx_add_visnotify(Window win, int level, int obscured);
129 void macosx_add_mapnotify(Window win, int level, int map) { argument
130 if (!win || !level || !map) {}
133 void macosx_add_create(Window win, int level) { argument
134 if (!win || !level) {}
137 void macosx_add_destroy(Window win, int level) { argument
138 if (!win || !level) {}
141 macosx_add_visnotify(Window win, int level, int obscured) argument
417 int level; member in struct:evdat
427 macosx_add_mapnotify(Window win, int level, int map) argument
445 macosx_add_create(Window win, int level) argument
459 macosx_add_destroy(Window win, int level) argument
473 macosx_add_visnotify(Window win, int level, int obscured) argument
534 int level; member in struct:windat
[all...]
/external/opencv/cv/src/
H A Dcvsegmentation.cpp335 int i, j, level; local
383 for( level = 1; level <= max_level; level++ )
385 CV_CALL( src_pyramid[level] = cvCreateMat( (src_pyramid[level-1]->rows+1)/2,
386 (src_pyramid[level-1]->cols+1)/2, src_pyramid[level-1]->type ));
387 CV_CALL( dst_pyramid[level] = cvCreateMat( src_pyramid[level]
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_texture.c46 0, 0, 0, 0, texture, transfer->level,
63 ctx->resource_copy_region(ctx, texture, transfer->level,
70 unsigned level, unsigned layer)
72 return rtex->surface.level[level].offset +
73 layer * rtex->surface.level[level].slice_size;
164 if (pitch_in_bytes_override && pitch_in_bytes_override != rtex->surface.level[0].pitch_bytes) {
165 /* old ddx on evergreen over estimate alignment for 1d, only 1 level
168 rtex->surface.level[
69 r600_texture_get_offset(struct r600_resource_texture *rtex, unsigned level, unsigned layer) argument
264 si_texture_get_transfer(struct pipe_context *ctx, struct pipe_resource *texture, unsigned level, unsigned usage, const struct pipe_box *box) argument
556 unsigned level = surf_tmpl->u.tex.level; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dbocu1tst.c790 uint8_t prev[5], level[5]; local
806 writeDiff(0, level);
807 writeDiff(1, level);
808 writeDiff(65, level);
809 writeDiff(130, level);
810 writeDiff(30000, level);
811 writeDiff(1000000, level);
812 writeDiff(-65, level);
813 writeDiff(-130, level);
814 writeDiff(-30000, level);
866 writePacked(encodeBocu1(&i, 0xfeff), level); local
[all...]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_miptree.c37 layer_offset(struct pipe_resource *pt, unsigned level, unsigned layer) argument
40 struct nv30_miptree_level *lvl = &mt->level[level];
59 stride = mt->level[0].pitch;
88 define_rect(struct pipe_resource *pt, unsigned level, unsigned z, argument
93 struct nv30_miptree_level *lvl = &mt->level[level];
95 rect->w = u_minify(pt->width0, level) << mt->ms_x;
97 rect->h = u_minify(pt->height0, level) << mt->ms_y;
103 rect->d = u_minify(pt->depth0, level);
162 nv30_miptree_transfer_new(struct pipe_context *pipe, struct pipe_resource *pt, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp211 BreakpointOptions::GetDescription (Stream *s, lldb::DescriptionLevel level) const
219 if (level == lldb::eDescriptionLevelVerbose)
239 m_thread_spec_ap->GetDescription (s, level);
240 else if (level == eDescriptionLevelBrief)
242 if (level == lldb::eDescriptionLevelFull)
251 if (level != eDescriptionLevelBrief)
254 m_callback_baton_sp->GetDescription (s, level);
259 if (level != eDescriptionLevelBrief)
268 BreakpointOptions::CommandBaton::GetDescription (Stream *s, lldb::DescriptionLevel level) const
272 if (level
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_validate.c125 int level; local
133 level = intel_image->base.Base.Level;
137 for (int i = 0; i < mt->level[level].depth; i++)
138 intel_miptree_slice_resolve_depth(intel, mt, level, i);
148 for (i = 0; i < mt->level[level].depth; i++) {
149 intel_miptree_get_image_offset(mt, level, face, i, &x, &y);
158 intel_miptree_get_image_offset(mt, level, face, 0, &x, &y);
161 __FUNCTION__, face, level,
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_validate.c125 int level; local
133 level = intel_image->base.Base.Level;
137 for (int i = 0; i < mt->level[level].depth; i++)
138 intel_miptree_slice_resolve_depth(intel, mt, level, i);
148 for (i = 0; i < mt->level[level].depth; i++) {
149 intel_miptree_get_image_offset(mt, level, face, i, &x, &y);
158 intel_miptree_get_image_offset(mt, level, face, 0, &x, &y);
161 __FUNCTION__, face, level,
[all...]
/external/webrtc/src/modules/audio_processing/
H A Dgain_control_impl.cc190 // Take the analog level to be the average across the handles.
204 int GainControlImpl::set_stream_analog_level(int level) { argument
206 if (level < minimum_capture_level_ || level > maximum_capture_level_) {
211 if (level != analog_capture_level_) {
212 // The analog level has been changed; update our internal levels.
213 capture_levels_.assign(num_handles(), level); local
216 analog_capture_level_ = level;
284 int GainControlImpl::set_target_level_dbfs(int level) { argument
286 if (level > 3
[all...]
/external/zlib/src/contrib/iostream2/
H A Dzstream.h160 ozstream(FILE* fp, int level = Z_DEFAULT_COMPRESSION)
162 open(fp, level);
164 ozstream(const char* name, int level = Z_DEFAULT_COMPRESSION)
166 open(name, level);
173 * The compression level parameter should be in 0..9
177 void open(const char* name, int level = Z_DEFAULT_COMPRESSION) {
179 if (level != Z_DEFAULT_COMPRESSION) mode[2] = '0'+level;
186 void open(FILE* fp, int level = Z_DEFAULT_COMPRESSION) {
189 if (level !
[all...]

Completed in 984 milliseconds

1234567891011>>