HomeSort by relevance Sort by last modified time
    Searched defs:ofs (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_mm.h 41 int ofs,size; member in struct:mem_block
52 extern struct mem_block *u_mmInit(int ofs, int size);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mm.h 39 unsigned ofs; member in struct:mem_block
51 extern struct mem_block *mmInit(unsigned ofs, unsigned size);
  /external/mesa3d/src/gallium/auxiliary/util/
u_mm.h 41 int ofs,size; member in struct:mem_block
52 extern struct mem_block *u_mmInit(int ofs, int size);
  /external/mesa3d/src/mesa/main/
mm.h 39 unsigned ofs; member in struct:mem_block
51 extern struct mem_block *mmInit(unsigned ofs, unsigned size);
  /external/chromium/chrome/browser/history/
snippet_unittest.cc 109 size_t ofs = 0; local
110 while ((ofs = document_folded.find(*qw, ofs)) != std::string::npos) {
111 match_positions.push_back(std::make_pair(ofs, ofs + qw->size()));
112 ofs += qw->size();
  /external/chromium_org/chrome/browser/history/
snippet_unittest.cc 109 size_t ofs = 0; local
110 while ((ofs = document_folded.find(*qw, ofs)) != std::string::npos) {
111 match_positions.push_back(std::make_pair(ofs, ofs + qw->size()));
112 ofs += qw->size();
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
common_x86.c 283 GLuint ofs; local
285 for (ofs = 0; ofs < 3; ofs++)
286 _mesa_x86_cpuid(0x80000002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_name + (16*ofs)+8), (GLuint *)(cpu_name + (16*ofs)+12));
  /external/mesa3d/src/mesa/x86/
common_x86.c 283 GLuint ofs; local
285 for (ofs = 0; ofs < 3; ofs++)
286 _mesa_x86_cpuid(0x80000002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_name + (16*ofs)+8), (GLuint *)(cpu_name + (16*ofs)+12));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ShadowBlur.cpp 146 int ofs = 1 + side2; local
152 unsigned char* next = pixels + ofs * stride + channels[step];
165 for (i = 0; i < limit; ptr += stride, next += stride, ++i, ++ofs) {
167 sum += ((ofs < dim) ? *next : alpha2) - alpha1;
171 for (; ofs < dim; ptr += stride, prev += stride, next += stride, ++i, ++ofs) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorStucci.java 76 float wDelta = 1.0f / halfW, hDelta = 1.0f / halfH, dDelta = 1.0f / halfD, noiseValue, ofs;; local
89 ofs = turbul / 200.0f;
91 ofs *= noiseValue * noiseValue;
94 texres.intensity = NoiseGenerator.NoiseFunctions.noise(texvec[0], texvec[1], texvec[2] + ofs, noisesize, 0, noisebasis, isHard);
  /external/opencv/cv/src/
cvfeatureselect.cpp 190 int j = count, ofs = (int)((uchar*)(ptr_data[i]) - eig->data.ptr); local
191 y = ofs / eig->step;
192 x = (ofs - y * eig->step)/sizeof(float);
cvfilter.cpp 205 int i, j, k, ofs; local
250 ofs = (anchor.x-x_range.start_index)*pix_sz;
282 border_tab[i + j] = idx + ofs + j;
    [all...]
  /external/qemu/
qemu-timer.h 296 uint32_t cur, ofs; local
300 ofs = cc >> 32;
301 return cur - ofs;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_video.h 32 unsigned ofs; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /external/iproute2/misc/
lnstat.c 165 int ofs = 0; local
179 snprintf(th.hdr[0]+ofs, width+2, fmt,
185 snprintf(th.hdr[h]+ofs, width+2, fmt, "");
188 snprintf(th.hdr[h]+ofs, width+2, fmt, cname);
192 ofs += width+1;
196 for (i = 0; i < ofs; i++) {
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 32 unsigned ofs; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 474 int ofs = 1;
476 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
478 while (ofs < maxOfs && key.compareTo(a[base + hint + ofs]) > 0) {
479 lastOfs = ofs;
480 ofs = (ofs << 1) + 1;
481 if (ofs <= 0) // int overflow
482 ofs = maxOfs;
484 if (ofs > maxOfs
523 if (DEBUG) assert lastOfs == ofs; \/\/ so a[base + ofs - 1] < key <= a[base + ofs] field in class:ComparableTimSort
    [all...]
TimSort.java 506 int ofs = 1;
508 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
510 while (ofs < maxOfs && c.compare(key, a[base + hint + ofs]) > 0) {
511 lastOfs = ofs;
512 ofs = (ofs * 2) + 1;
513 if (ofs <= 0) // int overflow
514 ofs = maxOfs;
516 if (ofs > maxOfs
555 if (DEBUG) assert lastOfs == ofs; \/\/ so a[base + ofs - 1] < key <= a[base + ofs] field in class:TimSort
    [all...]
  /external/bzip2/
bzip2recover.c 468 Int32 ofs, k; local
479 ofs = split - outFileName;
482 strcat (outFileName, inFileName + ofs);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 559 int64 ofs = ftell(new_file_.get()); local
560 if (ofs == -1)
568 int64 expected_size = ofs + sizeof(ChunkHeader);
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 564 int64 ofs = ftell(new_file_.get()); local
565 if (ofs == -1)
573 int64 expected_size = ofs + sizeof(ChunkHeader);
  /external/chromium_org/content/common/
plugin_list_posix.cc 365 std::string::size_type ofs = 0; local
369 std::string::size_type end = description.find(':', ofs);
372 mime_type.mime_type = description.substr(ofs, end - ofs);
373 ofs = end + 1;
375 end = description.find(':', ofs);
378 const std::string extensions = description.substr(ofs, end - ofs);
380 ofs = end + 1;
382 end = description.find(';', ofs);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 791 int ofs = 0; \
797 ofs += *(Type *)srcbuf; \
802 if(ofs < right) { \
806 if(left - ofs > 0) { \
807 start = left - ofs; \
812 startcol = ofs + start; \
820 ofs += run; \
821 } else if(!ofs) \
823 if(ofs == w) { \
824 ofs = 0;
866 int ofs = 0; local
1132 int ofs; local
1854 int ofs = 0; local
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
server.c 55 int decode_xfer_read (char *buf, char **annex, CORE_ADDR *ofs, unsigned int *len)
67 decode_m_packet (buf, ofs, len);
537 CORE_ADDR ofs; local
545 if (decode_xfer_read (arg_own_buf + 20, &annex, &ofs, &len) < 0) {
584 if (ofs > doc_len) {
589 VG_(lseek) (fd, ofs, VKI_SEEK_SET);
592 len_read, ofs + len_read < doc_len);
601 CORE_ADDR ofs; local
606 if (decode_xfer_read (arg_own_buf + 16, &annex, &ofs, &len) < 0
630 if (ofs >= client_auxv_len
    [all...]
  /external/opencv/cvaux/src/
cvhmm.cpp 816 int ofs = -m*obs_x*n_states; local
824 mp[l + ofs] += mp[l] * state[l].weight[m];
    [all...]

Completed in 1242 milliseconds

1 2