Home
last modified time | relevance | path

Searched refs:ofs (Results 1 – 25 of 69) sorted by relevance

123

/external/svox/pico/lib/
Dpicokpr.h98 extern picokpr_VarStrPtr picokpr_getVarStrPtr(picokpr_Preproc preproc, picokpr_StrArrOffset ofs);
105 extern picokpr_LexCat picokpr_getLexCat(picokpr_Preproc preproc, picokpr_LexCatArrOffset ofs);
108 …ern picoos_int32 picokpr_getAttrValArrInt32(picokpr_Preproc preproc, picokpr_AttrValArrOffset ofs);
111 …cokpr_StrArrOffset picokpr_getOutItemStrOfs(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
112 …ern picokpr_VarStrPtr picokpr_getOutItemStr(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
113 extern picoos_int32 picokpr_getOutItemType(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
114 extern picoos_int32 picokpr_getOutItemVal(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
115 …r_OutItemArrOffset picokpr_getOutItemArgOfs(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
116 …_OutItemArrOffset picokpr_getOutItemNextOfs(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs);
119 extern picokpr_TokSetNP picokpr_getTokSetNP(picokpr_Preproc preproc, picokpr_TokArrOffset ofs);
[all …]
Dpicokpr.c274 extern picokpr_VarStrPtr picokpr_getVarStrPtr(picokpr_Preproc preproc, picokpr_StrArrOffset ofs) in picokpr_getVarStrPtr() argument
276 picoos_uint8 * p = (picoos_uint8 *)&(((kpr_SubObj)preproc)->rStrArr[ofs]); in picokpr_getVarStrPtr()
331 extern picokpr_LexCat picokpr_getLexCat(picokpr_Preproc preproc, picokpr_LexCatArrOffset ofs) in picokpr_getLexCat() argument
333 picoos_uint8 * p = (picoos_uint8 *)&(((kpr_SubObj)preproc)->rLexCatArr[ofs]); in picokpr_getLexCat()
342 …tern picoos_int32 picokpr_getAttrValArrInt32(picokpr_Preproc preproc, picokpr_AttrValArrOffset ofs) in picokpr_getAttrValArrInt32() argument
344 picoos_uint8 * p = (picoos_uint8 *)&(((kpr_SubObj)preproc)->rAttrValArr[ofs]); in picokpr_getAttrValArrInt32()
361 …r_OutItemArrOffset picokpr_getOutItemNextOfs(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs) in picokpr_getOutItemNextOfs() argument
363 picoos_uint8 * p = (picoos_uint8 *)&(((kpr_SubObj)preproc)->rOutItemArr[ofs]); in picokpr_getOutItemNextOfs()
369 extern picoos_int32 picokpr_getOutItemType(picokpr_Preproc preproc, picokpr_OutItemArrOffset ofs) in picokpr_getOutItemType() argument
371 picoos_uint8 * p = (picoos_uint8 *)&(((kpr_SubObj)preproc)->rOutItemArr[ofs]); in picokpr_getOutItemType()
[all …]
/external/mesa3d/src/mesa/main/
Dmm.c43 fprintf(stderr, " Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size, in mmDumpMemInfo()
51 fprintf(stderr, " FREE Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size, in mmDumpMemInfo()
61 mmInit(unsigned ofs, unsigned size) in mmInit() argument
89 block->ofs = ofs; in mmInit()
105 if (startofs > p->ofs) { in SliceBlock()
109 newblock->ofs = startofs; in SliceBlock()
110 newblock->size = p->size - (startofs - p->ofs); in SliceBlock()
133 newblock->ofs = startofs + size; in SliceBlock()
181 startofs = (p->ofs + mask) & ~mask; in mmAllocMem()
186 if (endofs <= (p->ofs+p->size)) in mmAllocMem()
[all …]
Dmm.h39 unsigned ofs; member
51 extern struct mem_block *mmInit(unsigned ofs, unsigned size);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dmm.c43 fprintf(stderr, " Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size, in mmDumpMemInfo()
51 fprintf(stderr, " FREE Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size, in mmDumpMemInfo()
61 mmInit(unsigned ofs, unsigned size) in mmInit() argument
89 block->ofs = ofs; in mmInit()
105 if (startofs > p->ofs) { in SliceBlock()
109 newblock->ofs = startofs; in SliceBlock()
110 newblock->size = p->size - (startofs - p->ofs); in SliceBlock()
133 newblock->ofs = startofs + size; in SliceBlock()
181 startofs = (p->ofs + mask) & ~mask; in mmAllocMem()
186 if (endofs <= (p->ofs+p->size)) in mmAllocMem()
[all …]
Dmm.h39 unsigned ofs; member
51 extern struct mem_block *mmInit(unsigned ofs, unsigned size);
/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_RLEaccel.c791 int ofs = 0; \ in RLEClipBlit()
797 ofs += *(Type *)srcbuf; \ in RLEClipBlit()
802 if(ofs < right) { \ in RLEClipBlit()
806 if(left - ofs > 0) { \ in RLEClipBlit()
807 start = left - ofs; \ in RLEClipBlit()
812 startcol = ofs + start; \ in RLEClipBlit()
820 ofs += run; \ in RLEClipBlit()
821 } else if(!ofs) \ in RLEClipBlit()
823 if(ofs == w) { \ in RLEClipBlit()
824 ofs = 0; \ in RLEClipBlit()
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_mm.c45 debug_printf(" Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
59 debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
70 u_mmInit(int ofs, int size) in u_mmInit() argument
98 block->ofs = ofs; in u_mmInit()
114 if (startofs > p->ofs) { in SliceBlock()
118 newblock->ofs = startofs; in SliceBlock()
119 newblock->size = p->size - (startofs - p->ofs); in SliceBlock()
142 newblock->ofs = startofs + size; in SliceBlock()
194 startofs = (p->ofs + mask) & ~mask; in u_mmAllocMem()
199 if (endofs <= (p->ofs+p->size)) in u_mmAllocMem()
[all …]
Du_mm.h41 int ofs,size; member
52 extern struct mem_block *u_mmInit(int ofs, int size);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_mm.c45 debug_printf(" Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
59 debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size, in u_mmDumpMemInfo()
70 u_mmInit(int ofs, int size) in u_mmInit() argument
98 block->ofs = ofs; in u_mmInit()
114 if (startofs > p->ofs) { in SliceBlock()
118 newblock->ofs = startofs; in SliceBlock()
119 newblock->size = p->size - (startofs - p->ofs); in SliceBlock()
142 newblock->ofs = startofs + size; in SliceBlock()
194 startofs = (p->ofs + mask) & ~mask; in u_mmAllocMem()
199 if (endofs <= (p->ofs+p->size)) in u_mmAllocMem()
[all …]
Du_mm.h41 int ofs,size; member
52 extern struct mem_block *u_mmInit(int ofs, int size);
/external/mesa3d/src/mesa/x86/
Dcommon_x86.c283 GLuint ofs; in _mesa_get_x86_features() local
285 for (ofs = 0; ofs < 3; ofs++) in _mesa_get_x86_features()
286 …000002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_n… in _mesa_get_x86_features()
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
Dcommon_x86.c283 GLuint ofs; in _mesa_get_x86_features() local
285 for (ofs = 0; ofs < 3; ofs++) in _mesa_get_x86_features()
286 …000002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_n… in _mesa_get_x86_features()
/external/libpcap/msdos/
Dpktdrvr.c828 WORD ofs = _farpeekw (_dos_ds, realBase+rxOutOfs); in PktReceive() local
830 if (ofs != _farpeekw (_dos_ds, realBase+rxInOfs)) in PktReceive()
835 head.firstCount = _farpeekw (_dos_ds, realBase+ofs); in PktReceive()
836 head.secondCount = _farpeekw (_dos_ds, realBase+ofs+2); in PktReceive()
837 head.handle = _farpeekw (_dos_ds, realBase+ofs+4); in PktReceive()
843 dosmemget (realBase+ofs+6, len, buf); in PktReceive()
848 ofs += sizeof (RX_ELEMENT); in PktReceive()
849 if (ofs > LAST_RX_BUF) in PktReceive()
851 else _farpokew (_dos_ds, realBase+rxOutOfs, ofs); in PktReceive()
859 WORD ofs; in PktQueueBusy() local
[all …]
/external/f2fs-tools/fsck/
Ddump.c139 u32 nid, u64 *ofs) in dump_node_blk() argument
161 *ofs += skip; in dump_node_blk()
170 for (i = 0; i < idx; i++, (*ofs)++) { in dump_node_blk()
173 dump_data_blk(*ofs * F2FS_BLKSIZE, in dump_node_blk()
178 le32_to_cpu(node_blk->in.nid[i]), ofs); in dump_node_blk()
182 le32_to_cpu(node_blk->in.nid[i]), ofs); in dump_node_blk()
193 u64 ofs = 0; in dump_inode_blk() local
206 for (i = 0; i < ADDRS_PER_INODE(&node_blk->i); i++, ofs++) in dump_inode_blk()
207 dump_data_blk(ofs * F2FS_BLKSIZE, in dump_inode_blk()
214 node_blk->i.i_nid[i], &ofs); in dump_inode_blk()
[all …]
/external/opencv/cvaux/src/
Denmin.cpp401 int ofs;
409 ofs = tempVtxIdx == u;
410 if( !ofs )
442 graphEdge = graphEdge -> next[ ofs ];
451 ofs = tempVtxIdx == u;
452 if( ofs )
490 graphEdge = graphEdge -> next[ ofs ];
554 int ofs;
560 ofs = vtxIdx == v;
562 if( ofs )
[all …]
/external/chromium_org/components/query_parser/
Dsnippet_unittest.cc111 size_t ofs = 0; in BuildSnippet() local
112 while ((ofs = document_folded.find(*qw, ofs)) != std::string::npos) { in BuildSnippet()
113 match_positions.push_back(std::make_pair(ofs, ofs + qw->size())); in BuildSnippet()
114 ofs += qw->size(); in BuildSnippet()
/external/strace/test/
Dx32_lseek.c23 long ofs = 0x12345678901; in main() local
31 (long) (ofs), in main()
36 printf((r == ofs) ? "64-bit offset used\n" : "Kernel truncated offset\n"); in main()
Dx32_mmap.c23 long ofs = 0x12345670000; // fails if not page-aligned in main() local
35 (long) (ofs) // ofs in main()
/external/qemu/tcg/i386/
Dtcg-target.c619 tcg_target_long ofs, tcg_target_long val) in tcg_out_sti() argument
622 tcg_out_modrm_offset(s, opc, 0, base, ofs); in tcg_out_sti()
1190 int ofs = 0; in tcg_out_qemu_ld_slow_path() local
1192 tcg_out_st(s, TCG_TYPE_PTR, TCG_AREG0, TCG_REG_ESP, ofs); in tcg_out_qemu_ld_slow_path()
1193 ofs += 4; in tcg_out_qemu_ld_slow_path()
1195 tcg_out_st(s, TCG_TYPE_I32, l->addrlo_reg, TCG_REG_ESP, ofs); in tcg_out_qemu_ld_slow_path()
1196 ofs += 4; in tcg_out_qemu_ld_slow_path()
1199 tcg_out_st(s, TCG_TYPE_I32, l->addrhi_reg, TCG_REG_ESP, ofs); in tcg_out_qemu_ld_slow_path()
1200 ofs += 4; in tcg_out_qemu_ld_slow_path()
1203 tcg_out_sti(s, TCG_TYPE_I32, TCG_REG_ESP, ofs, l->mem_index); in tcg_out_qemu_ld_slow_path()
[all …]
Dtcg-target.h135 #define TCG_TARGET_deposit_i32_valid(ofs, len) \ argument
136 (((ofs) == 0 && (len) == 8) || ((ofs) == 8 && (len) == 8) || \
137 ((ofs) == 0 && (len) == 16))
/external/iproute2/misc/
Dlnstat.c165 int ofs = 0; in build_hdr_string() local
179 snprintf(th.hdr[0]+ofs, width+2, fmt, in build_hdr_string()
185 snprintf(th.hdr[h]+ofs, width+2, fmt, ""); in build_hdr_string()
188 snprintf(th.hdr[h]+ofs, width+2, fmt, cname); in build_hdr_string()
192 ofs += width+1; in build_hdr_string()
196 for (i = 0; i < ofs; i++) { in build_hdr_string()
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
Dpb_bufmgr_mm.c119 return (unsigned char *) mm->map + mm_buf->block->ofs; in mm_buffer_map()
159 *offset += mm_buf->block->ofs; in mm_buffer_get_base_buffer()
216 assert(0 <= (pb_size)mm_buf->block->ofs && (pb_size)mm_buf->block->ofs < mm->size); in mm_bufmgr_create_buffer()
217 …assert(size <= (pb_size)mm_buf->block->size && (pb_size)mm_buf->block->ofs + (pb_size)mm_buf->bloc… in mm_bufmgr_create_buffer()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
Dpb_bufmgr_mm.c119 return (unsigned char *) mm->map + mm_buf->block->ofs; in mm_buffer_map()
159 *offset += mm_buf->block->ofs; in mm_buffer_get_base_buffer()
216 assert(0 <= (pb_size)mm_buf->block->ofs && (pb_size)mm_buf->block->ofs < mm->size); in mm_bufmgr_create_buffer()
217 …assert(size <= (pb_size)mm_buf->block->size && (pb_size)mm_buf->block->ofs + (pb_size)mm_buf->bloc… in mm_bufmgr_create_buffer()
/external/chromium_org/third_party/brotli/src/woff2/
Dfile.h33 std::ofstream ofs(filename.c_str(), std::ios::binary); in SetFileContents()
36 std::ostream_iterator<char>(ofs)); in SetFileContents()

123