Home
last modified time | relevance | path

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

12

/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/quake/quake/src/QW/client/
Dr_sky.c100 int ofs, baseofs; in R_MakeSky() local
125 ofs = baseofs + ((x+xshift) & SKYMASK); in R_MakeSky()
130 *(unsigned *)&bottommask[ofs]) | in R_MakeSky()
131 *(unsigned *)&bottomsky[ofs]; in R_MakeSky()
139 ofs = baseofs + ((x+xshift) & SKYMASK); in R_MakeSky()
142 *(byte *)&bottommask[ofs]) | in R_MakeSky()
143 *(byte *)&bottomsky[ofs]; in R_MakeSky()
164 int ofs, baseofs; in R_GenSkyTile() local
184 ofs = baseofs + ((x+xshift) & SKYMASK); in R_GenSkyTile()
189 *(unsigned *)&bottommask[ofs]) | in R_GenSkyTile()
[all …]
Dcommon.c1419 char *ofs; in COM_CreatePath() local
1421 for (ofs = path+1 ; *ofs ; ofs++) in COM_CreatePath()
1423 if (*ofs == '/') in COM_CreatePath()
1425 *ofs = 0; in COM_CreatePath()
1427 *ofs = '/'; in COM_CreatePath()
Dd_polyse.c997 int ofs;
1018 ofs = d_scantable[new[1]] + new[0];
1019 if (new[5] > d_pzbuffer[ofs])
1023 d_pzbuffer[ofs] = new[5];
1026 d_viewbuffer[ofs] = pix;
/external/quake/quake/src/WinQuake/
Dr_sky.cpp100 int ofs, baseofs; in R_MakeSky() local
125 ofs = baseofs + ((x+xshift) & SKYMASK); in R_MakeSky()
130 *(unsigned *)&bottommask[ofs]) | in R_MakeSky()
131 *(unsigned *)&bottomsky[ofs]; in R_MakeSky()
139 ofs = baseofs + ((x+xshift) & SKYMASK); in R_MakeSky()
142 *(byte *)&bottommask[ofs]) | in R_MakeSky()
143 *(byte *)&bottomsky[ofs]; in R_MakeSky()
164 int ofs, baseofs; in R_GenSkyTile() local
184 ofs = baseofs + ((x+xshift) & SKYMASK); in R_GenSkyTile()
189 *(unsigned *)&bottommask[ofs]) | in R_GenSkyTile()
[all …]
Dpr_edict.cpp38 ddef_t *ED_FieldAtOfs (int ofs);
148 ddef_t *ED_GlobalAtOfs (int ofs) in ED_GlobalAtOfs() argument
156 if (def->ofs == ofs) in ED_GlobalAtOfs()
167 ddef_t *ED_FieldAtOfs (int ofs) in ED_FieldAtOfs() argument
175 if (def->ofs == ofs) in ED_FieldAtOfs()
269 return (eval_t *)((char *)&ed->u.v + def->ofs*4); in GetEdictFieldValue()
381 char *PR_GlobalString (int ofs) in PR_GlobalString() argument
389 val = (void *)&pr_globals[ofs]; in PR_GlobalString()
390 def = ED_GlobalAtOfs(ofs); in PR_GlobalString()
392 sprintf (line,"%i(??""?)", ofs); in PR_GlobalString()
[all …]
Dcommon.cpp1343 char *ofs; in COM_CreatePath() local
1345 for (ofs = (char*) path+1 ; *ofs ; ofs++) in COM_CreatePath()
1347 if (*ofs == '/') in COM_CreatePath()
1349 *ofs = 0; in COM_CreatePath()
1351 *ofs = '/'; in COM_CreatePath()
Dd_polyse.cpp1044 int ofs;
1065 ofs = d_scantable[new[1]] + new[0];
1066 if (new[5] > d_pzbuffer[ofs])
1070 d_pzbuffer[ofs] = new[5];
1073 d_viewbuffer[ofs] = pix;
Dpr_comp.h132 unsigned short ofs; member
Dpr_exec.cpp139 char *PR_GlobalString (int ofs);
140 char *PR_GlobalStringNoContents (int ofs);
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_RLEaccel.c790 int ofs = 0; \ in RLEClipBlit()
796 ofs += *(Type *)srcbuf; \ in RLEClipBlit()
801 if(ofs < right) { \ in RLEClipBlit()
805 if(left - ofs > 0) { \ in RLEClipBlit()
806 start = left - ofs; \ in RLEClipBlit()
811 startcol = ofs + start; \ in RLEClipBlit()
819 ofs += run; \ in RLEClipBlit()
820 } else if(!ofs) \ in RLEClipBlit()
822 if(ofs == w) { \ in RLEClipBlit()
823 ofs = 0; \ in RLEClipBlit()
[all …]
/external/clearsilver/python/examples/trans/
Dtrans.py208 for (s, ofs) in results:
210 r = map(lambda x: (x[0], x[1] + ofs, x[2]), r)
321 for (s, ofs, ishtml) in strings:
327 if type(ofs) == type(""): # HDF
328 if seen_hdf.has_key(ofs):
329 if seen_hdf[ofs][0] != s:
330 …plicate HDF Name %s:\n\t file %s = %s\n\t file %s = %s" % (ofs, seen_hdf[ofs][1], seen_hdf[ofs][0]…
332 seen_hdf[ofs] = (s, fname)
334 uniq[s].append((fname, ofs, l))
336 uniq[s] = [(fname, ofs, l)]
[all …]
/external/kernel-headers/original/linux/mtd/
Dmap.h365 static inline map_word inline_map_read(struct map_info *map, unsigned long ofs) in inline_map_read() argument
370 r.x[0] = __raw_readb(map->virt + ofs); in inline_map_read()
372 r.x[0] = __raw_readw(map->virt + ofs); in inline_map_read()
374 r.x[0] = __raw_readl(map->virt + ofs); in inline_map_read()
377 r.x[0] = __raw_readq(map->virt + ofs); in inline_map_read()
380 memcpy_fromio(r.x, map->virt+ofs, map->bankwidth); in inline_map_read()
385 static inline void inline_map_write(struct map_info *map, const map_word datum, unsigned long ofs) in inline_map_write() argument
388 __raw_writeb(datum.x[0], map->virt + ofs); in inline_map_write()
390 __raw_writew(datum.x[0], map->virt + ofs); in inline_map_write()
392 __raw_writel(datum.x[0], map->virt + ofs); in inline_map_write()
[all …]
Dmtd.h190 int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len);
191 int (*unlock) (struct mtd_info *mtd, loff_t ofs, size_t len);
198 int (*block_isbad) (struct mtd_info *mtd, loff_t ofs);
199 int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
Dnand.h352 int (*block_bad)(struct mtd_info *mtd, loff_t ofs, int getchip);
353 int (*block_markbad)(struct mtd_info *mtd, loff_t ofs);
Dbbm.h113 int (*isbad_bbt)(struct mtd_info *mtd, loff_t ofs, int allowbbt);
/external/quake/quake/src/QW/server/
Dpr_edict.c36 ddef_t *ED_FieldAtOfs (int ofs);
144 ddef_t *ED_GlobalAtOfs (int ofs) in ED_GlobalAtOfs() argument
152 if (def->ofs == ofs) in ED_GlobalAtOfs()
163 ddef_t *ED_FieldAtOfs (int ofs) in ED_FieldAtOfs() argument
171 if (def->ofs == ofs) in ED_FieldAtOfs()
264 return (eval_t *)((char *)&ed->v + def->ofs*4); in GetEdictFieldValue()
375 char *PR_GlobalString (int ofs) in PR_GlobalString() argument
383 val = (void *)&pr_globals[ofs]; in PR_GlobalString()
384 def = ED_GlobalAtOfs(ofs); in PR_GlobalString()
386 sprintf (line,"%i(???)", ofs); in PR_GlobalString()
[all …]
Dpr_comp.h131 unsigned short ofs; member
/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/clearsilver/cgi/
Drfc2388.c127 int ofs = 0; in _read_line() local
155 ofs = cgi->readlen - cgi->nl; in _read_line()
156 memmove(cgi->buf, cgi->buf + cgi->nl, ofs); in _read_line()
166 to_read = cgi->buflen - ofs; in _read_line()
171 cgiwrap_read (cgi->buf + ofs, to_read, &(cgi->readlen)); in _read_line()
187 cgi->readlen += ofs; in _read_line()
/external/elfcopy/
Ddwarf.c3458 long l, ofs; in display_debug_frames() local
3515 ofs = byte_get (start, 1); start += 1; in display_debug_frames()
3520 ofs * fc->code_factor, in display_debug_frames()
3521 fc->pc_begin + ofs * fc->code_factor); in display_debug_frames()
3522 fc->pc_begin += ofs * fc->code_factor; in display_debug_frames()
3526 ofs = byte_get (start, 2); start += 2; in display_debug_frames()
3531 ofs * fc->code_factor, in display_debug_frames()
3532 fc->pc_begin + ofs * fc->code_factor); in display_debug_frames()
3533 fc->pc_begin += ofs * fc->code_factor; in display_debug_frames()
3537 ofs = byte_get (start, 4); start += 4; in display_debug_frames()
[all …]
/external/bzip2/
Dbzip2recover.c468 Int32 ofs, k; in main() local
479 ofs = split - outFileName; in main()
482 strcat (outFileName, inFileName + ofs); in main()
/external/tcpdump/
Dsmbutil.c172 name_ptr(const u_char *buf, int ofs, const u_char *maxbuf) in name_ptr() argument
177 p = buf + ofs; in name_ptr()
211 name_extract(const u_char *buf, int ofs, const u_char *maxbuf, char *name) in name_extract() argument
213 const u_char *p = name_ptr(buf, ofs, maxbuf); in name_extract()
/external/yaffs2/yaffs2/mtdemul/
Dnandemul2k.c578 static int nand_block_isbad(struct mtd_info *mtd, loff_t ofs) in nand_block_isbad() argument
583 static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs) in nand_block_markbad() argument

12