HomeSort by relevance Sort by last modified time
    Searched full:curr (Results 176 - 200 of 530) sorted by null

1 2 3 4 5 6 78 91011>>

  /build/tools/
mktarball.sh 35 # echo "$f: dir: $is_dir curr: $curr_perms uid: $new_uid gid: $new_gid "\
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.h 58 } curr; member in struct:rbug_context
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_constants.c 64 pipe_resource_reference( &svga->curr.cb[shader],
svga_state_vs.c 162 key->allow_psiz = svga->curr.rast->templ.point_size_per_vertex;
165 key->fs_generic_inputs = svga->curr.fs->generic_inputs;
179 struct svga_vertex_shader *vs = svga->curr.vs;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.cc 252 for (HeapProfileBucket* curr = bucket_table_[i]; curr != 0; /**/) {
253 HeapProfileBucket* bucket = curr;
254 curr = curr->next;
507 for (HeapProfileBucket* curr = bucket_table_[hash_index];
508 curr != 0;
509 curr = curr->next) {
510 if ((curr->hash == bucket.hash) && (curr->depth == bucket.depth) &
    [all...]
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 133 uint64_t Curr = Value;
134 while (Curr > 0) {
135 if (Curr & 1)
137 Curr >>= 1;
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.h 58 } curr; member in struct:rbug_context
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_constants.c 64 pipe_resource_reference( &svga->curr.cb[shader],
svga_state_vs.c 162 key->allow_psiz = svga->curr.rast->templ.point_size_per_vertex;
165 key->fs_generic_inputs = svga->curr.fs->generic_inputs;
179 struct svga_vertex_shader *vs = svga->curr.vs;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 138 void CopyVopMB(Vop *curr, uint8 *prevFrame, int mbnum, int width_Y, int height)
154 y1 = curr->yChan + lumstart;
155 u1 = curr->uChan + chrstart;
156 v1 = curr->vChan + chrstart;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_Copy16x16.c 70 /* Copying the ref 16x16 blk to the curr blk */
omxVCCOMM_Copy8x8.c 70 /* Copying the ref 8x8 blk to the curr blk */
  /external/opencv/cvaux/src/
cvscanlines.cpp 184 int curr; local
186 curr = 0;
191 x1 = scanlines[curr++];
192 y1 = scanlines[curr++];
193 x2 = scanlines[curr++];
194 y2 = scanlines[curr++];
214 int curr; local
218 curr = 0;
223 x1 = (int) (scanlines_1[curr] * alpha + scanlines_2[curr] * (1.0 - alpha))
338 int curr; local
    [all...]
  /build/tools/atree/
fs.cpp 189 const char** curr = args; local
194 *curr = s;
195 ++curr;
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
builders.js 223 var groupNames = groupNames.reduce(function(prev, curr) {
224 if (prev.indexOf(curr) == -1) {
225 prev.push(curr);
  /frameworks/av/media/libmedia/
Metadata.cpp 141 size_t curr = mData->dataPosition(); local
146 size_t left = curr - mBegin;
162 mData->setDataPosition(curr);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 77 curr = root[1] # start at the first node
78 while curr is not root:
79 yield curr[2] # yield the curr[KEY]
80 curr = curr[1] # move to next node
86 curr = root[0] # start at the last node
87 while curr is not root:
88 yield curr[2] # yield the curr[KEY
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 77 curr = root[1] # start at the first node
78 while curr is not root:
79 yield curr[2] # yield the curr[KEY]
80 curr = curr[1] # move to next node
86 curr = root[0] # start at the last node
87 while curr is not root:
88 yield curr[2] # yield the curr[KEY
    [all...]
  /art/compiler/dex/quick/
ralloc_util.cc 1045 RegLocation *curr = &mir_graph_->reg_location_[i]; local
1046 int p_map_idx = SRegToPMap(curr->s_reg_low);
1047 if (!curr->wide) {
1048 if (curr->fp) {
1050 curr->location = kLocPhysReg;
1051 curr->low_reg = promotion_map_[p_map_idx].FpReg;
1052 curr->home = true;
1056 curr->location = kLocPhysReg;
1057 curr->low_reg = promotion_map_[p_map_idx].core_reg;
1058 curr->home = true
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp 1104 RenderLayer* curr = ancestorStackingContainer(); local
1167 RenderObject* curr = renderer()->parent(); local
1298 RenderLayer* curr = parent(); local
1345 RenderLayer* curr = parent(); local
1396 const RenderLayer* curr = includeSelf ? this : parent(); local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkMath.cpp 352 uint32_t curr = (uint32_t)value >> 30; local
359 if (guess < curr) {
360 curr -= guess + 1;
363 curr = (curr << 3) | ((uint32_t)value >> 29);
  /external/chromium_org/third_party/skia/src/views/
SkTouchGesture.cpp 193 const float curr = SkScalarToFloat(fGlobalM[0]); local
195 if (scale > 1 && curr * scale > MAX_ZOOM_SCALE) {
196 scale = MAX_ZOOM_SCALE / curr;
197 } else if (scale < 1 && curr * scale < MIN_ZOOM_SCALE) {
198 scale = MIN_ZOOM_SCALE / curr;
  /external/skia/src/core/
SkMath.cpp 352 uint32_t curr = (uint32_t)value >> 30; local
359 if (guess < curr) {
360 curr -= guess + 1;
363 curr = (curr << 3) | ((uint32_t)value >> 29);
  /external/skia/src/views/
SkTouchGesture.cpp 193 const float curr = SkScalarToFloat(fGlobalM[0]); local
195 if (scale > 1 && curr * scale > MAX_ZOOM_SCALE) {
196 scale = MAX_ZOOM_SCALE / curr;
197 } else if (scale < 1 && curr * scale < MIN_ZOOM_SCALE) {
198 scale = MIN_ZOOM_SCALE / curr;
  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 222 const GGLSurface* curr = mMipmaps + i; local
223 if (curr->format != surface.format) {
230 if (w != curr->width || h != curr->height) {
234 prev = curr;

Completed in 633 milliseconds

1 2 3 4 5 6 78 91011>>