/external/svox/pico/lib/ |
D | picokpr.h | 98 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 …]
|
D | picokpr.c | 274 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/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | ComparableTimSort.java | 436 int ofs = 1; in gallopLeft() 440 while (ofs < maxOfs && key.compareTo(a[base + hint + ofs]) > 0) { in gallopLeft() 441 lastOfs = ofs; in gallopLeft() 442 ofs = (ofs << 1) + 1; in gallopLeft() 443 if (ofs <= 0) // int overflow in gallopLeft() 444 ofs = maxOfs; in gallopLeft() 446 if (ofs > maxOfs) ofs = maxOfs; in gallopLeft() 450 ofs += hint; in gallopLeft() 454 while (ofs < maxOfs && key.compareTo(a[base + hint - ofs]) <= 0) { in gallopLeft() 455 lastOfs = ofs; in gallopLeft() [all …]
|
D | TimSort.java | 468 int ofs = 1; in gallopLeft() 472 while (ofs < maxOfs && c.compare(key, a[base + hint + ofs]) > 0) { in gallopLeft() 473 lastOfs = ofs; in gallopLeft() 474 ofs = (ofs << 1) + 1; in gallopLeft() 475 if (ofs <= 0) // int overflow in gallopLeft() 476 ofs = maxOfs; in gallopLeft() 478 if (ofs > maxOfs) ofs = maxOfs; in gallopLeft() 482 ofs += hint; in gallopLeft() 486 while (ofs < maxOfs && c.compare(key, a[base + hint - ofs]) <= 0) { in gallopLeft() 487 lastOfs = ofs; in gallopLeft() [all …]
|
/external/curl/src/ |
D | tool_cb_see.c | 95 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence) argument 101 # define _lseeki64(hnd,ofs,whence) _lseek(hnd,ofs,whence) argument 103 # define _lseeki64(hnd,ofs,whence) _lseek64(hnd,ofs,whence) argument 110 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence) argument
|
/external/mesa3d/src/mesa/main/ |
D | mm.c | 43 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 …]
|
D | mm.h | 39 unsigned ofs; member 51 extern struct mem_block *mmInit(unsigned ofs, unsigned size);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_mm.c | 45 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 …]
|
D | u_mm.h | 41 int ofs,size; member 52 extern struct mem_block *u_mmInit(int ofs, int size);
|
/external/libdrm/intel/ |
D | mm.c | 45 drmMsg(" Offset:%08x, Size:%08x, %c%c\n", p->ofs, in mmDumpMemInfo() 53 drmMsg(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, in mmDumpMemInfo() 62 drm_private struct mem_block *mmInit(int ofs, int size) in mmInit() argument 90 block->ofs = ofs; in mmInit() 104 if (startofs > p->ofs) { in SliceBlock() 109 newblock->ofs = startofs; in SliceBlock() 110 newblock->size = p->size - (startofs - p->ofs); in SliceBlock() 134 newblock->ofs = startofs + size; in SliceBlock() 181 startofs = (p->ofs + mask) & ~mask; in mmAllocMem() 186 if (endofs <= (p->ofs + p->size)) in mmAllocMem() [all …]
|
D | mm.h | 42 int ofs, size; member 51 drm_private extern struct mem_block *mmInit(int ofs, int size);
|
/external/libweave/examples/provider/ |
D | wifi_manager.cc | 155 std::ofstream ofs(hostapd_conf); in StartAccessPoint() local 156 ofs << "interface=" << iface_ << std::endl; in StartAccessPoint() 157 ofs << "channel=1" << std::endl; in StartAccessPoint() 158 ofs << "ssid=" << ssid << std::endl; in StartAccessPoint() 172 std::ofstream ofs(dnsmasq_conf.c_str()); in StartAccessPoint() local 173 ofs << "port=0" << std::endl; in StartAccessPoint() 174 ofs << "bind-interfaces" << std::endl; in StartAccessPoint() 175 ofs << "log-dhcp" << std::endl; in StartAccessPoint() 176 ofs << "dhcp-range=192.168.76.10,192.168.76.100" << std::endl; in StartAccessPoint() 177 ofs << "interface=" << iface_ << std::endl; in StartAccessPoint() [all …]
|
/external/mesa3d/src/mesa/x86/ |
D | common_x86.c | 283 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/ |
D | pktdrvr.c | 828 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/libjpeg-turbo/md5/ |
D | md5hl.c | 49 MD5FileChunk(const char *filename, char *buf, off_t ofs, off_t len) in MD5FileChunk() argument 63 if (ofs > stbuf.st_size) in MD5FileChunk() 64 ofs = stbuf.st_size; in MD5FileChunk() 65 if ((len == 0) || (len > stbuf.st_size - ofs)) in MD5FileChunk() 66 len = stbuf.st_size - ofs; in MD5FileChunk() 67 if (lseek(f, ofs, SEEK_SET) < 0) in MD5FileChunk()
|
/external/opencv/cvaux/src/ |
D | enmin.cpp | 401 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/f2fs-tools/fsck/ |
D | dump.c | 140 u32 nid, u64 *ofs) in dump_node_blk() argument 162 *ofs += skip; in dump_node_blk() 171 for (i = 0; i < idx; i++, (*ofs)++) { in dump_node_blk() 174 dump_data_blk(*ofs * F2FS_BLKSIZE, in dump_node_blk() 179 le32_to_cpu(node_blk->in.nid[i]), ofs); in dump_node_blk() 183 le32_to_cpu(node_blk->in.nid[i]), ofs); in dump_node_blk() 194 u64 ofs = 0; in dump_inode_blk() local 207 for (i = 0; i < ADDRS_PER_INODE(&node_blk->i); i++, ofs++) in dump_inode_blk() 208 dump_data_blk(ofs * F2FS_BLKSIZE, in dump_inode_blk() 215 node_blk->i.i_nid[i], &ofs); in dump_inode_blk() [all …]
|
/external/valgrind/coregrind/m_gdbserver/ |
D | server.c | 62 int decode_xfer_read (char *buf, const char **annex, CORE_ADDR *ofs, unsigned int *len) in decode_xfer_read() argument 74 decode_m_packet (buf, ofs, len); in decode_xfer_read() 818 CORE_ADDR ofs; in handle_query() local 826 if (decode_xfer_read (arg_own_buf + 20, &annex, &ofs, &len) < 0) { in handle_query() 865 if (ofs > doc_len) { in handle_query() 870 VG_(lseek) (fd, ofs, VKI_SEEK_SET); in handle_query() 875 ofs + len_read < doc_len); in handle_query() 884 CORE_ADDR ofs; in handle_query() local 889 if (decode_xfer_read (arg_own_buf + 16, &annex, &ofs, &len) < 0 in handle_query() 913 if (ofs >= client_auxv_len) in handle_query() [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
D | TextureGeneratorStucci.java | 76 float wDelta = 1.0f / halfW, hDelta = 1.0f / halfH, dDelta = 1.0f / halfD, noiseValue, ofs;; in generate() local 89 ofs = turbul / 200.0f; in generate() 91 ofs *= noiseValue * noiseValue; in generate() 94 …texres.intensity = NoiseGenerator.NoiseFunctions.noise(texvec[0], texvec[1], texvec[2] + ofs, nois… in generate()
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_bufmgr_mm.c | 119 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/iproute2/misc/ |
D | lnstat.c | 186 int ofs = 0; in build_hdr_string() local 197 snprintf(th.hdr[0]+ofs, width+2, "%*.*s|", width, width, in build_hdr_string() 203 snprintf(th.hdr[h]+ofs, width+2, in build_hdr_string() 207 snprintf(th.hdr[h]+ofs, width+2, in build_hdr_string() 212 ofs += width+1; in build_hdr_string() 216 for (i = 0; i < ofs; i++) { in build_hdr_string()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/ |
D | btMLCPSolver.cpp | 234 static btAlignedObjectArray<int> ofs; in createMLCPFast() local 237 ofs.resize(0); in createMLCPFast() 238 ofs.resizeNoInitialize(m_allConstraintPtrArray.size()); in createMLCPFast() 248 ofs[c] = rowOffset; in createMLCPFast() 354 int row__ = ofs[c]; in createMLCPFast() 377 Jptr + 2*8*(size_t)ofs[j0] + ofsother, numRows, numRowsOther, row__,ofs[j0]); in createMLCPFast() 395 Jptr + 2*8*(size_t)ofs[j1] + ofsother, numRows, numRowsOther, row__,ofs[j1]); in createMLCPFast()
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_video.h | 32 unsigned ofs; member 50 dec->cmds[dec->ofs++] = data; in nouveau_vpe_write()
|
/external/opencv/cv/src/ |
D | cvfeatureselect.cpp | 190 int j = count, ofs = (int)((uchar*)(ptr_data[i]) - eig->data.ptr); in CV_IMPLEMENT_QSORT() local 191 y = ofs / eig->step; in CV_IMPLEMENT_QSORT() 192 x = (ofs - y * eig->step)/sizeof(float); in CV_IMPLEMENT_QSORT()
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | no-iv-rewrite.ll | 30 %ofs = sext i32 %i.02 to i64 31 %adr = getelementptr inbounds i32, i32* %arr, i64 %ofs 62 ; %ofs sext should be eliminated while preserving gep inboundsness. 71 %ofs = sext i32 %i.02 to i64 72 %adr = getelementptr inbounds i32, i32* %arr, i64 %ofs 94 ; It's not indvars' job to perform LICM on %ofs 114 %ofs = sext i32 %idx to i64 115 %adr = getelementptr inbounds i32, i32* %ptriv, i64 %ofs
|