HomeSort by relevance Sort by last modified time
    Searched defs:pitch (Results 76 - 100 of 230) sorted by null

1 2 34 5 6 7 8 910

  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 25 // cleanup easier than fragmented stuff. In addition, we added a "pitch"
45 curr->pitch = (real) (width + border2);
49 for (int j = height + border2; j--; y++, position += curr->pitch) {
75 img->pitch = (real) (width + border2);
80 for (int j = height + border2; j--; y++, position += img->pitch) {
126 for (h = height; h--; base += pyr->pitch) {
137 for (h = top; h--; base -= pyr->pitch) {
138 memcpy(base - pyr->pitch, base, pyr->pitch * sizeof(short));
142 for (h = bot; h--; base += pyr->pitch) {
240 int pitch = scr->pitch; local
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon35168
Pyramid.cpp 25 // cleanup easier than fragmented stuff. In addition, we added a "pitch"
45 curr->pitch = (real) (width + border2);
49 for (int j = height + border2; j--; y++, position += curr->pitch) {
75 img->pitch = (real) (width + border2);
80 for (int j = height + border2; j--; y++, position += img->pitch) {
126 for (h = height; h--; base += pyr->pitch) {
137 for (h = top; h--; base -= pyr->pitch) {
138 memcpy(base - pyr->pitch, base, pyr->pitch * sizeof(short));
142 for (h = bot; h--; base += pyr->pitch) {
240 int pitch = scr->pitch; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon35178
Pyramid.cpp 25 // cleanup easier than fragmented stuff. In addition, we added a "pitch"
45 curr->pitch = (real) (width + border2);
49 for (int j = height + border2; j--; y++, position += curr->pitch) {
75 img->pitch = (real) (width + border2);
80 for (int j = height + border2; j--; y++, position += img->pitch) {
126 for (h = height; h--; base += pyr->pitch) {
137 for (h = top; h--; base -= pyr->pitch) {
138 memcpy(base - pyr->pitch, base, pyr->pitch * sizeof(short));
142 for (h = bot; h--; base += pyr->pitch) {
234 int pitch = scr->pitch; local
    [all...]
  /development/ndk/platforms/android-9/include/android/
sensor.h 101 float pitch; member in struct:ASensorVector::__anon1511::__anon1513
  /external/chromium/chrome/browser/extensions/
extension_tts_api.h 24 // will be empty strings, and rate, pitch, and volume will be -1.0.
35 double pitch,
87 double pitch() { return pitch_; } function in class:Utterance
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.cc 186 double pitch = 1.0; local
189 options->GetDouble(constants::kPitchKey, &pitch));
190 if (pitch < 0.0 || pitch > 2.0) {
256 continuous_params.pitch = pitch;
  /external/chromium_org/third_party/freetype/include/freetype/
ftcache.h 918 FT_Short pitch; member in struct:FTC_SBitRec_
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbitmap.c 47 FT_Int pitch = source->pitch; local
61 if ( pitch < 0 )
62 pitch = -pitch;
63 size = (FT_ULong)( pitch * source->rows );
67 FT_Int target_pitch = target->pitch;
104 int pitch; local
113 pitch = bitmap->pitch;
221 FT_Int i, x, y, pitch; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_zscan.c 354 unsigned x, y, i, pitch; local
393 pitch = buf_transfer->stride / sizeof(float);
407 f[i * VL_BLOCK_WIDTH + y * pitch + x] = addr;
545 unsigned x, y, i, pitch; local
572 pitch = buf_transfer->stride;
581 data[i * VL_BLOCK_WIDTH + y * pitch + x] = matrix[x + y * VL_BLOCK_WIDTH];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_compute_internal.c 504 uint32_t word4 = 0, yuv_format = 0, pitch = 0; local
525 pitch = align(tmp->surface.level[0].nblk_x *
537 S_030000_PITCH((pitch / 8) - 1) |
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_drawable.h 82 int width, height, pitch, /*bytes per pixel */ bpp; member in struct:apple_glx_pixmap
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_blit.c 150 /* Blit pitch must be dword-aligned. Otherwise, the hardware appears to drop
272 int pitch, cpp; local
293 pitch = region->pitch;
298 region->bo, (pitch * cpp),
319 pitch /= 4;
322 BR13 |= (pitch * cpp);
488 GLuint pitch, height; local
491 /* The pitch given to the GPU must be DWORD aligned, and
492 * we want width to match pitch. Max width is (1 << 15 - 1)
537 int pitch, cpp; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_texture.c 104 st->pitch = s->pitch;
108 size = get_format_blocksy(st->format, h) * st->pitch;
126 get_format_blocksy(s->format, y) * s->pitch +
181 st->pitch = s->pitch;
185 size = get_format_blocksy(st->format, h) * st->pitch;
188 *stride = st->pitch;
203 get_format_blocksy(s->format, y) * s->pitch +
205 *stride = s->pitch;
386 unsigned size, pitch, offset = 0, local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common_context.c 477 "attaching buffer %s, %d, at %d, cpp %d, pitch %d\n",
479 buffers[i].cpp, buffers[i].pitch);
482 rb->pitch = buffers[i].pitch;
493 uint32_t tiling_flags = 0, pitch = 0; local
509 ret = radeon_bo_get_tiling(bo, &tiling_flags, &pitch);
radeon_screen.h 116 int pitch; /* in pixels */ member in struct:__DRIimageRec
  /external/freetype/src/base/
ftbitmap.c 49 FT_Int pitch = source->pitch; local
63 if ( pitch < 0 )
64 pitch = -pitch;
65 size = (FT_ULong)( pitch * source->rows );
69 FT_Int target_pitch = target->pitch;
106 int pitch; local
115 pitch = bitmap->pitch;
223 FT_Int i, x, y, pitch; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.c 354 unsigned x, y, i, pitch; local
393 pitch = buf_transfer->stride / sizeof(float);
407 f[i * VL_BLOCK_WIDTH + y * pitch + x] = addr;
545 unsigned x, y, i, pitch; local
572 pitch = buf_transfer->stride;
581 data[i * VL_BLOCK_WIDTH + y * pitch + x] = matrix[x + y * VL_BLOCK_WIDTH];
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute_internal.c 504 uint32_t word4 = 0, yuv_format = 0, pitch = 0; local
525 pitch = align(tmp->surface.level[0].nblk_x *
537 S_030000_PITCH((pitch / 8) - 1) |
  /external/mesa3d/src/glx/apple/
apple_glx_drawable.h 82 int width, height, pitch, /*bytes per pixel */ bpp; member in struct:apple_glx_pixmap
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.c 150 /* Blit pitch must be dword-aligned. Otherwise, the hardware appears to drop
272 int pitch, cpp; local
293 pitch = region->pitch;
298 region->bo, (pitch * cpp),
319 pitch /= 4;
322 BR13 |= (pitch * cpp);
488 GLuint pitch, height; local
491 /* The pitch given to the GPU must be DWORD aligned, and
492 * we want width to match pitch. Max width is (1 << 15 - 1)
537 int pitch, cpp; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_texture.c 104 st->pitch = s->pitch;
108 size = get_format_blocksy(st->format, h) * st->pitch;
126 get_format_blocksy(s->format, y) * s->pitch +
181 st->pitch = s->pitch;
185 size = get_format_blocksy(st->format, h) * st->pitch;
188 *stride = st->pitch;
203 get_format_blocksy(s->format, y) * s->pitch +
205 *stride = s->pitch;
386 unsigned size, pitch, offset = 0, local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.c 477 "attaching buffer %s, %d, at %d, cpp %d, pitch %d\n",
479 buffers[i].cpp, buffers[i].pitch);
482 rb->pitch = buffers[i].pitch;
493 uint32_t tiling_flags = 0, pitch = 0; local
509 ret = radeon_bo_get_tiling(bo, &tiling_flags, &pitch);
radeon_screen.h 116 int pitch; /* in pixels */ member in struct:__DRIimageRec

Completed in 1034 milliseconds

1 2 34 5 6 7 8 910