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

12 3

  /libcore/ojluni/src/main/java/java/util/
ComparableTimSort.java 508 int ofs = 1;
510 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
512 while (ofs < maxOfs && key.compareTo(a[base + hint + ofs]) > 0) {
513 lastOfs = ofs;
514 ofs = (ofs << 1) + 1;
515 if (ofs <= 0) // int overflow
516 ofs = maxOfs;
518 if (ofs > maxOfs
557 assert lastOfs == ofs; \/\/ so a[base + ofs - 1] < key <= a[base + ofs] field in class:ComparableTimSort
    [all...]
TimSort.java 541 int ofs = 1;
543 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
545 while (ofs < maxOfs && c.compare(key, a[base + hint + ofs]) > 0) {
546 lastOfs = ofs;
547 ofs = (ofs << 1) + 1;
548 if (ofs <= 0) // int overflow
549 ofs = maxOfs;
551 if (ofs > maxOfs
590 assert lastOfs == ofs; \/\/ so a[base + ofs - 1] < key <= a[base + ofs] field in class:TimSort
    [all...]
  /external/bzip2/
bzip2recover.c 468 Int32 ofs, k; local
479 ofs = split - outFileName;
482 strcat (outFileName, inFileName + ofs);
  /external/libvncserver/common/
zywrletemplate.c 359 int s, ofs; local
367 ofs = (4<<l)*SkipPixel;
369 Harr(pX0, pX0+ofs);
371 Harr(pX0, pX0+ofs);
373 Harr(pX0, pX0+ofs);
  /external/f2fs-tools/fsck/
resize.c 360 unsigned int ofs = 0, pre_ofs = 0; local
387 ofs = SIT_BLOCK_OFFSET(sit_i, segno - offset);
389 if (ofs != pre_ofs) {
395 pre_ofs = ofs;
404 blk_addr = get_newsb(sit_blkaddr) + ofs;
fsck.c 237 int ofs = get_extra_isize(node_blk); local
239 target_blk_addr = node_blk->i.i_addr[ofs + ofs_in_node];
420 ASSERT_MSG("xnid[0x%x] has wrong ofs:[0x%x]",
635 int ofs = get_extra_isize(node_blk); local
697 if (le32_to_cpu(node_blk->i.i_addr[ofs]) != 0) {
700 le32_to_cpu(node_blk->i.i_addr[ofs]));
701 node_blk->i.i_addr[ofs] = 0;
722 if (le32_to_cpu(node_blk->i.i_addr[ofs]) != 0) {
725 le32_to_cpu(node_blk->i.i_addr[ofs]));
726 node_blk->i.i_addr[ofs] = 0
    [all...]
f2fs.h 232 int ofs = get_extra_isize(node_blk) + DEF_INLINE_RESERVED_SIZE; local
234 return (void *)&(node_blk->i.i_addr[ofs]);
mount.c 181 int ofs = __get_extra_isize(inode); local
242 DISP_u32(inode, i_addr[ofs]); /* Pointers to data blocks */
243 DISP_u32(inode, i_addr[ofs + 1]); /* Pointers to data blocks */
244 DISP_u32(inode, i_addr[ofs + 2]); /* Pointers to data blocks */
245 DISP_u32(inode, i_addr[ofs + 3]); /* Pointers to data blocks */
247 for (i = ofs + 3; i < ADDRS_PER_INODE(inode); i++) {
1552 int ofs = get_extra_isize(node_blk); local
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
server.c 62 int decode_xfer_read (char *buf, const char **annex, CORE_ADDR *ofs, unsigned int *len)
74 decode_m_packet (buf, ofs, len);
870 CORE_ADDR ofs; local
878 if (decode_xfer_read (arg_own_buf + 20, &annex, &ofs, &len) < 0) {
917 if (ofs > doc_len) {
922 VG_(lseek) (fd, ofs, VKI_SEEK_SET);
927 ofs + len_read < doc_len);
936 CORE_ADDR ofs; local
941 if (decode_xfer_read (arg_own_buf + 16, &annex, &ofs, &len) < 0
988 CORE_ADDR ofs; local
1047 CORE_ADDR ofs; local
    [all...]
  /system/netd/tests/dns_responder/
dns_responder.cpp 210 unsigned ofs = *buffer & 0x3F; local
214 if (ofs == 0) {
218 if (cur + ofs > buffer_end) {
222 name.append(cur, ofs);
224 return cur + ofs;
  /art/compiler/optimizing/
code_generator_mips64.cc 1114 uint32_t ofs = GetFrameSize(); local
1122 __ cfi().RelOffset(DWARFReg(reg), ofs); local
1131 __ cfi().RelOffset(DWARFReg(reg), ofs); local
1155 uint32_t ofs = GetFrameSize(); local
    [all...]
  /external/libpcap/msdos/
pktdrvr.c 363 static char pktStr[9] = "PKT DRVR"; /* ASCIIZ string at ofs 3 */
828 WORD ofs = _farpeekw (_dos_ds, realBase+rxOutOfs); local
830 if (ofs != _farpeekw (_dos_ds, realBase+rxInOfs))
835 head.firstCount = _farpeekw (_dos_ds, realBase+ofs);
836 head.secondCount = _farpeekw (_dos_ds, realBase+ofs+2);
837 head.handle = _farpeekw (_dos_ds, realBase+ofs+4);
843 dosmemget (realBase+ofs+6, len, buf);
848 ofs += sizeof (RX_ELEMENT);
849 if (ofs > LAST_RX_BUF)
851 else _farpokew (_dos_ds, realBase+rxOutOfs, ofs);
859 WORD ofs; local
894 WORD ofs = *(WORD*) (realBase+rxOutOfs); local
925 WORD ofs; local
1246 unsigned sel, ofs; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_vp3_video_vp.c 32 uint32_t ofs[6]; // 1c..20 ofs member in struct:mpeg12_picparm_vp
58 uint32_t ofs[6]; // 10..24 ofs member in struct:mpeg4_picparm_vp
96 uint32_t ofs[6]; // 14..28 ofs member in struct:vc1_picparm_vp
115 uint32_t ofs[6]; // 0c..24 in-image offset member in struct:h264_picparm_vp
122 unsigned direct_8x8_inference_flag : 1; // 1 0x02: into vuc ofs 56
124 unsigned constrained_intra_pred_flag : 1; // 3 0x08: into vuc ofs 68
240 nouveau_vp3_ycbcr_offsets(dec, &pic_vp->ofs[1], &pic_vp->ofs[3], &pic_vp->ofs[4])
    [all...]
  /external/opencv/cvaux/src/
cvhmm.cpp 816 int ofs = -m*obs_x*n_states; local
824 mp[l + ofs] += mp[l] * state[l].weight[m];
    [all...]
  /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:__anon32179
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:__anon32180
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:__anon32181
    [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/opencv/cv/src/
cvhough.cpp 994 int ofs = *(int*)cvGetSeqElem( centers, i ); local
995 y = ofs/(acols+2) - 1;
996 x = ofs - (y+1)*(acols+2) - 1;
    [all...]
cvimgwarp.cpp 290 const int* ofs, const int* xofs ) \
309 sum += _src[ofs[k]] + _src[ofs[k+1]] + \
310 _src[ofs[k+2]] + _src[ofs[k+3]]; \
313 sum += _src[ofs[k]]; \
719 int* ofs = (int*)cvStackAlloc( (area + dsize.width*cn)*sizeof(int) ); local
1085 int k, type, depth, cn, *ofs = 0; local
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 3041 int ofs = 0; local
3210 int ofs, prev_ofs; local
    [all...]
  /external/python/cpython2/Objects/
listobject.c 1178 Py_ssize_t ofs; local
1186 ofs = 1;
1189 * a[hint + lastofs] < key <= a[hint + ofs]
1192 while (ofs < maxofs) {
1193 IFLT(a[ofs], key) {
1194 lastofs = ofs;
1195 ofs = (ofs << 1) + 1;
1196 if (ofs <= 0) /* int overflow */
1197 ofs = maxofs
1269 Py_ssize_t ofs; local
    [all...]
  /external/python/cpython3/Objects/
listobject.c 1192 Py_ssize_t ofs; local
1200 ofs = 1;
1203 * a[hint + lastofs] < key <= a[hint + ofs]
1206 while (ofs < maxofs) {
1207 IFLT(a[ofs], key) {
1208 lastofs = ofs;
1209 ofs = (ofs << 1) + 1;
1210 if (ofs <= 0) /* int overflow */
1211 ofs = maxofs
1283 Py_ssize_t ofs; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf64-hppa.c 902 bfd_size_type ofs;
985 hh->dlt_offset = x->ofs;
986 x->ofs += DLT_ENTRY_SIZE;
1005 hh->plt_offset = x->ofs;
1006 x->ofs += PLT_ENTRY_SIZE;
1038 hh->stub_offset = x->ofs;
1039 x->ofs += sizeof (plt_stub);
1111 hh->opd_offset = x->ofs;
1112 x->ofs += OPD_ENTRY_SIZE;
901 bfd_size_type ofs; member in struct:elf64_hppa_allocate_data
    [all...]
elfxx-sparc.c 863 int block, last_block, ofs, last_ofs, chunks_this_block; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 2197 u32 ofs, len; local
    [all...]

Completed in 1139 milliseconds

12 3