HomeSort by relevance Sort by last modified time
    Searched defs:offset (Results 251 - 275 of 7301) sorted by null

<<11121314151617181920>>

  /external/libunwind/src/
os-linux.c 39 unsigned long start, end, offset, flags; local
49 while (maps_next (&mi, &start, &end, &offset, &flags))
57 cur_map->offset = offset;
91 if (elf_w (get_load_base) (&ei, offset, &load_base))
139 if (ei.valid && elf_w (get_load_base) (&ei, cur_map->offset, &load_base))
  /external/libvpx/libvpx/test/
vp8_boolcoder_test.cc 45 const size_t offset = input - reinterpret_cast<uint8_t *>(decrypt_state); local
47 output[i] = input[i] ^ secret_key[(offset + i) & 15];
  /external/libvpx/libvpx/third_party/libyuv/source/
row_win.cc 33 xmm1 = _mm_cvtsi32_si128(*(uint32*)(u_buf + offset)); \
44 xmm1 = _mm_cvtsi32_si128(*(uint32*)(u_buf + offset)); \
96 const ptrdiff_t offset = (uint8*)v_buf - (uint8*)u_buf; local
115 const ptrdiff_t offset = (uint8*)v_buf - (uint8*)u_buf; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 92 int offset = shift - count; local
94 if ((lowvalue << (offset - 1)) & 0x80000000) {
106 br->buffer[br->pos++] = (lowvalue >> (24 - offset));
108 lowvalue <<= offset; local
  /external/libvpx/libvpx/vp9/common/
vp9_tile_common.c 20 const int offset = ((idx * sb_cols) >> log2) << MI_BLOCK_SIZE_LOG2; local
21 return VPXMIN(offset, mis);
  /external/libvpx/libvpx/vpx_dsp/
bitwriter.h 55 int offset = shift - count; local
57 if ((lowvalue << (offset - 1)) & 0x80000000) {
68 br->buffer[br->pos++] = (lowvalue >> (24 - offset));
69 lowvalue <<= offset; local
  /external/libyuv/files/source/
row_win.cc 33 xmm1 = _mm_cvtsi32_si128(*(uint32*)(u_buf + offset)); \
44 xmm1 = _mm_cvtsi32_si128(*(uint32*)(u_buf + offset)); \
95 const ptrdiff_t offset = (uint8*)v_buf - (uint8*)u_buf; local
114 const ptrdiff_t offset = (uint8*)v_buf - (uint8*)u_buf; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/stringloops/
memcmp.c 15 unsigned long offset, size; local
17 for (offset = 0; offset < SIZE; offset++) {
18 for (size = 0; size < (SIZE-offset); size++) {
22 y = memcmp(s1+offset, s2+offset, size);
23 x = test_memcmp(s1+offset, s2+offset, size);
27 printf("memcmp returned %d, should have returned %d (offset %ld size %ld)\n", x, y, offset, size)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/vm/
mlock2.h 32 unsigned long offset; local
45 &start, &end, perms, &offset, dev, &inode, path) < 6)
  /external/ltp/lib/
tst_module.c 86 const int offset = 2; /* command name & module path */ local
90 size += offset;
97 for (i = offset; i < size; ++i)
98 mod_argv[i] = argv[i - offset];
  /external/ltp/testcases/kernel/fs/doio/
databin.c 44 void databingen(int mode, char *buffer, int bsize, int offset)
60 buffer[ind] = ((offset + ind) % 8 & 0177);
80 * >= 0 : error at byte offset into the file, offset+buffer[0-(bsize-1)]
83 int databinchk(int mode, char *buffer, int bsize, int offset, char **errmsg)
107 expbits = ((offset + cnt) % 8 & 0177);
111 "data mismatch at offset %d, exp:%#lo, act:%#o",
112 offset + cnt, expbits, buffer[cnt]);
113 return offset + cnt;
136 "data mismatch at offset %d, exp:%#lo, act:%#lo"
151 int offset; local
    [all...]
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
segment.h 43 * range: optional (offset, length) arguments
46 off_t offset; member in struct:range
  /external/ltp/testcases/kernel/io/ltp-aiodio/
common_sparse.h 106 off_t offset = 0; local
117 fprintf(stderr, "non-zero read at offset %u\n",
118 (unsigned int)(offset + badbuf - buf));
122 offset += r;
dio_append.c 62 off_t offset; local
65 offset = lseek(fd, SEEK_END, 0);
69 fprintf(stderr, "non-zero read at offset %p\n",
70 offset + bufoff);
  /external/ltp/testcases/kernel/syscalls/llseek/
llseek01.c 25 * to an offset larger than file size. Also, verify that any attempt
29 * llseek() should return the offset from the beginning of the file measured
102 loff_t offset; /* Ret value from llseek */ local
106 offset = -1;
128 (int64_t) offset, BUFSIZ);
142 offset = lseek64(fildes, (loff_t) BUFSIZ, SEEK_SET);
143 if (offset != (loff_t) BUFSIZ) {
  /external/ltp/testcases/kernel/syscalls/profil/
profil01.c 72 size_t offset = (size_t) get_pc() - PROFIL_BUFLEN/2, count = 0; local
78 /* profil_count in glibc calculates offset as
82 ret = profil(buf, sizeof(buf), offset, 2*65536);
  /external/mesa3d/prebuilt-intermediates/main/
enums.c 34 uint32_t offset; member in struct:PACKED
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_suballoc.c 49 unsigned offset; /* Aligned offset pointing at the first unused byte. */ member in struct:u_suballocator
88 allocator->offset = align(allocator->offset, alignment);
96 allocator->offset + size > allocator->size) {
99 allocator->offset = 0;
118 assert(allocator->offset % alignment == 0);
119 assert(allocator->offset < allocator->buffer->width0);
120 assert(allocator->offset + size <= allocator->buffer->width0);
123 *out_offset = allocator->offset;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog_dump.c 179 unsigned offset = i*4; local
182 fprintf(stderr, "%d: op: 0x%08x", i, vs->body.d[offset]);
183 r300_vs_op_dump(vs->body.d[offset]);
186 fprintf(stderr, " src%i: 0x%08x", src, vs->body.d[offset+1+src]);
187 r300_vs_src_dump(vs->body.d[offset+1+src]);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.h 79 unsigned long offset; member in struct:softpipe_transfer
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_draw.c 246 unsigned offset; local
248 assert(svga->curr.ib.offset % svga->curr.ib.index_size == 0);
249 offset = svga->curr.ib.offset / svga->curr.ib.index_size;
258 info->start + offset,
svga_state_vdecl.c 55 * We can't set the VDECL offset to something negative, so we
61 * buffer offset below. The important thing is that all vertex buffer
73 unsigned int offset = vb->buffer_offset + ve[i].src_offset; local
80 if (buffer->uploaded.start > offset) {
81 tmp_neg_bias = buffer->uploaded.start - offset;
111 decls[i].array.offset = (vb->buffer_offset
116 assert(decls[i].array.offset >= 0);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_dead_code.c 60 uint32_t offset = (inst->src[i].index % 4) * 4; local
62 if (c->vattr_sizes[attr] != offset + 4)
136 uint32_t offset = (inst->src[i].index % 4) * 4; local
138 if (c->vattr_sizes[attr] == offset + 4) {
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 43 module::size_t offset; local
49 if (!(ts >> offset)) {
79 m.syms.push_back({ name, 0, offset, args });
  /external/mesa3d/src/intel/tools/
disasm.c 53 int offset = start; local
57 brw_inst *insn = assembly + offset;
61 fprintf(out, "0x%08x: ", offset);
73 offset += 8;
82 offset += 16;

Completed in 510 milliseconds

<<11121314151617181920>>