HomeSort by relevance Sort by last modified time
    Searched refs:ofs (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /external/protobuf/conformance/
ConformanceJava.java 12 int ofs = 0; local
14 int read = System.in.read(buf, ofs, len);
18 ofs += read;
conformance_cpp.cc 65 size_t ofs = 0; local
67 ssize_t bytes_read = read(fd, (char*)buf + ofs, len);
76 ofs += bytes_read;
  /external/u-boot/fs/jffs2/
jffs2_1pass.c 1337 int ret, __maybe_unused ofs; local
1500 uint32_t ofs, prevofs; local
    [all...]
  /external/u-boot/arch/xtensa/include/asm/arch-dc232b/
tie-asm.h 35 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
36 xchal_sa_start \continue, \ofs
76 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
77 xchal_sa_start \continue, \ofs
  /external/u-boot/arch/xtensa/include/asm/arch-dc233c/
tie-asm.h 47 * ofs Offset from start of larger sequence (from value of first ptr
56 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
57 xchal_sa_start \continue, \ofs
111 * ofs Offset from start of larger sequence (from value of first ptr
120 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
121 xchal_sa_start \continue, \ofs
  /external/u-boot/arch/xtensa/include/asm/arch-de212/
tie-asm.h 46 * ofs Offset from start of larger sequence (from value of first ptr
55 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
56 xchal_sa_start \continue, \ofs
100 * ofs Offset from start of larger sequence (from value of first ptr
109 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
110 xchal_sa_start \continue, \ofs
  /external/u-boot/drivers/mtd/nand/
mxs_nand.h 64 loff_t ofs);
  /external/u-boot/drivers/mtd/
altera_qspi.c 58 static void altera_qspi_get_locked_range(struct mtd_info *mtd, loff_t *ofs,
64 loff_t ofs; local
69 altera_qspi_get_locked_range(mtd, &ofs, &len);
73 info->start[0] + ofs, len);
232 static void altera_qspi_get_locked_range(struct mtd_info *mtd, loff_t *ofs,
244 *ofs = 0;
251 *ofs = mtd->size - *len;
255 static int altera_qspi_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
267 sector_start = ofs / mtd->erasesize;
268 sector_end = (ofs + len) / mtd->erasesize
    [all...]
cfi_mtd.c 107 static int cfi_mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
112 flash_protect(FLAG_PROTECT_SET, fi->start[0] + ofs,
113 fi->start[0] + ofs + len - 1, fi);
119 static int cfi_mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
124 flash_protect(FLAG_PROTECT_CLEAR, fi->start[0] + ofs,
125 fi->start[0] + ofs + len - 1, fi);
mtdconcat.c 503 static int concat_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
512 if (ofs >= subdev->size) {
514 ofs -= subdev->size;
517 if (ofs + len > subdev->size)
518 size = subdev->size - ofs;
522 err = mtd_lock(subdev, ofs, size);
531 ofs = 0;
537 static int concat_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
546 if (ofs >= subdev->size) {
548 ofs -= subdev->size
    [all...]
mtdcore.c     [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 32 unsigned ofs; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /external/protobuf/ruby/ext/google/protobuf_c/
encode_decode.c 51 #define DEREF(msg, ofs, type) *(type*)(((uint8_t *)msg) + ofs)
54 static const void* newhandlerdata(upb_handlers* h, uint32_t ofs) {
56 *hd_ofs = ofs;
62 size_t ofs; member in struct:__anon36099
67 static const void *newsubmsghandlerdata(upb_handlers* h, uint32_t ofs,
70 hd->ofs = ofs;
77 size_t ofs; // union data slot member in struct:__anon36100
84 uint32_t ofs,
110 const size_t *ofs = hd; local
158 const size_t *ofs = hd; local
170 const size_t *ofs = hd; local
223 size_t ofs; member in struct:__anon36101
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
listobject.c 1175 Py_ssize_t ofs; local
1183 ofs = 1;
1266 Py_ssize_t ofs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
listobject.c 1175 Py_ssize_t ofs; local
1183 ofs = 1;
1186 * a[hint + lastofs] < key <= a[hint + ofs]
1266 Py_ssize_t ofs; local
    [all...]
  /external/python/cpython2/Objects/
listobject.c 1175 Py_ssize_t ofs; local
1183 ofs = 1;
1186 * a[hint + lastofs] < key <= a[hint + ofs]
1189 while (ofs < maxofs) {
1190 IFLT(a[ofs], key) {
1191 lastofs = ofs;
1192 ofs = (ofs << 1) + 1;
1193 if (ofs <= 0) /* int overflow */
1194 ofs = maxofs
1266 Py_ssize_t ofs; local
    [all...]
  /external/python/cpython3/Objects/
listobject.c 1310 Py_ssize_t ofs; local
1401 Py_ssize_t ofs; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_mm.c 119 return (unsigned char *) mm->map + mm_buf->block->ofs;
159 *offset += mm_buf->block->ofs;
216 assert(0 <= (pb_size)mm_buf->block->ofs && (pb_size)mm_buf->block->ofs < mm->size);
217 assert(size <= (pb_size)mm_buf->block->size && (pb_size)mm_buf->block->ofs + (pb_size)mm_buf->block->size <= mm->size);
  /external/u-boot/drivers/mtd/onenand/
onenand_base.c 264 loff_t ofs = 0; local
270 ofs = this->diesize[0];
274 ofs += (loff_t) block << (this->erase_shift - 1);
276 ofs += (loff_t) (block - boundary - 1)
278 return ofs;
2099 loff_t ofs = 0; local
2315 loff_t ofs; local
    [all...]
  /external/u-boot/arch/arm/mach-tegra/
psci.S 31 .macro get_csr_reg cpu, ofs, tmp
34 moveq \ofs, #FLOW_CTRL_CPU_CSR
35 addne \ofs, \tmp, #FLOW_CTRL_CPU1_CSR - 8
  /external/u-boot/drivers/mtd/spi/
sf_internal.h 173 int stm_lock(struct spi_flash *flash, u32 ofs, size_t len);
176 int stm_unlock(struct spi_flash *flash, u32 ofs, size_t len);
179 int stm_is_locked(struct spi_flash *flash, u32 ofs, size_t len);
  /external/u-boot/fs/ext4/
ext4_journal.c 339 int ofs, flags; local
355 ofs = sizeof(struct journal_header_t);
358 tag = (struct ext3_journal_block_tag *)(p_jdb + ofs);
359 ofs += sizeof(struct ext3_journal_block_tag);
361 if (ofs > fs->blksz)
366 ofs += 16;
402 int ofs, flags; local
466 ofs = sizeof(struct journal_header_t);
469 (p_jdb + ofs);
470 ofs += sizeof(struct ext3_journal_block_tag)
    [all...]
  /external/u-boot/include/linux/mtd/
mtd.h 270 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
271 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
272 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
273 int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
274 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
275 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
393 int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
394 int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
395 int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
396 int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
    [all...]
  /external/iproute2/misc/
lnstat.c 183 int ofs = 0; local
192 snprintf(th.hdr[0]+ofs, width+2, "%*.*s|", width, width,
198 snprintf(th.hdr[h]+ofs, width+2,
202 snprintf(th.hdr[h]+ofs, width+2,
207 ofs += width+1;
211 for (i = 0; i < ofs; i++) {