/external/astl/src/ |
ios_pos_types.cpp | 34 fpos& fpos::operator+=(streamoff offs) { 35 const streamoff new_offs = mOffs + offs; 36 if (offs > 0) { 48 fpos fpos::operator+(streamoff offs) const { 50 pos += offs; 54 fpos fpos::operator-(streamoff offs) const { 56 pos -= offs;
|
/external/astl/include/ |
ios_pos_types.h | 51 fpos(streamoff offs) : mOffs(offs) { } 60 fpos& operator+=(streamoff offs); 61 fpos& operator-=(streamoff offs) { 62 return operator+=(-offs); 65 fpos operator+(streamoff offs) const; 66 fpos operator-(streamoff offs) const;
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 273 $offs = 0; 284 $offs += print_offs(@svoxheader); 286 print "offset after svoxheader: $offs\n"; 299 #fill should make the whole header 4-byte aligned, i.e. the current offs 301 $fill = ($offs + 2 + $len) % 4; 308 $offs += &print_uint16($len); #write little-endian 16-bit cardinal 309 print "offset after length of header: $offs\n"; 312 $offs += &print_uint8(@fields+0); 313 print "offset after number of fields: $offs\n"; 316 $offs += print_offs($fieldheader) [all...] |
/external/svox/pico/lib/ |
picokfst.c | 148 picoos_int32 offs; local 169 BytesToNum(kfst->fstStream,& curpos,& offs); 170 kfst->alphaHashTabPos = kfst->hdrLen + offs; 172 BytesToNum(kfst->fstStream,& curpos,& offs); 173 kfst->transTabPos = kfst->hdrLen + offs; 174 BytesToNum(kfst->fstStream,& curpos,& offs); 175 kfst->inEpsStateTabPos = kfst->hdrLen + offs; 176 BytesToNum(kfst->fstStream,& curpos,& offs); 177 kfst->accStateTabPos = kfst->hdrLen + offs; 276 picoos_int32 offs; local 367 picoos_int32 offs; local [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/external/zlib/contrib/infback9/ |
inftree9.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 135 offs[1] = 0; 137 offs[len + 1] = offs[len] + count[len]; 141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/bionic/libc/kernel/common/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/development/ndk/platforms/android-3/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/external/kernel-headers/original/linux/ |
msm_hw3d.h | 49 int get_msm_hw3d_file(int fd, uint32_t *offs, unsigned long *pbase,
|
/external/kernel-headers/original/linux/mtd/ |
bbm.h | 27 * @offs: offset of the pattern in the oob area of the page 47 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/frameworks/base/cmds/servicemanager/ |
binder.h | 33 void *offs; member in struct:binder_txn 39 uint32_t *offs; /* array of offsets */ member in struct:binder_io
|
binder.c | 44 unsigned *offs = txn->offs; local 49 fprintf(stderr," pid %8d uid %8d data %8d offs %8d\n", 53 obj = (void*) (((char*) txn->data) + *offs++); 183 data.txn.offs = 0; 187 data.txn.offs_size = ((char*) reply->offs) - ((char*) reply->offs0); 189 data.txn.offs = reply->offs0; 325 writebuf.txn.offs_size = ((char*) msg->offs) - ((char*) msg->offs0); 327 writebuf.txn.offs = msg->offs0; 397 bio->offs = bio->offs0 = txn->offs [all...] |
/external/zlib/contrib/blast/ |
blast.c | 190 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ local 222 offs[1] = 0; 224 offs[len + 1] = offs[len] + h->count[len]; 232 h->symbol[offs[length[symbol]]++] = symbol;
|
/external/zlib/ |
inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/bootable/diskinstaller/editdisklbl/ |
editdisklbl.c | 191 loff_t offs = part_file_map[cnt].pinfo->start_lba * dinfo->sect_size; local 193 if (write_raw_image(dest_fn, part_file_map[cnt].filename, offs, test)) {
|
/external/libvpx/vp8/common/ |
duck_io.h | 102 int64_t duck_seek(int g_hndl, int64_t offs, int origin);
|