Searched defs:amt (Results 1 - 25 of 55) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DAnnotatedOutput.java58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg); argument
H A DTwoColumnOutput.java246 * @param amt {@code >= 0;} the number of spaces to write
248 private static void writeSpaces(Writer out, int amt) throws IOException { argument
249 while (amt > 0) {
251 amt--;
H A DByteArrayAnnotatedOutput.java370 public void annotate(int amt, String msg) { argument
387 annotations.add(new Annotation(startAt, startAt + amt, msg));
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DAnnotatedOutput.java66 * @param amt >= 0; the amount of output for this annotation to
70 public void annotate(int amt, String msg); argument
H A DTwoColumnOutput.java250 * @param amt >= 0; the number of spaces to write
252 private static void writeSpaces(Writer out, int amt) throws IOException { argument
253 while (amt > 0) {
255 amt--;
H A DByteArrayAnnotatedOutput.java404 public void annotate(int amt, String msg) { argument
421 annotations.add(new Annotation(startAt, startAt + amt, msg, currentIndent));
H A DByteArrayOutput.java371 public void annotate(int amt, String msg) { argument
388 annotations.add(new Annotation(startAt, startAt + amt, msg));
/external/tcpdump/
H A Dprint-ripng.c66 register u_int amt; local
73 amt = snapend - dat;
74 i = min(length, amt);
/external/valgrind/main/none/tests/
H A Dpth_cancel2.c26 #define async_cancel_safe_read(fd,buf,amt) \
30 if (read(fd,buf,amt) < 0) \
37 #define async_cancel_safe_write(fd,buf,amt) \
41 if (write(fd,buf,amt) < 0) \
54 int amt=20; local
57 async_cancel_safe_write(*fd2,buf,amt);
58 async_cancel_safe_read(*fd2,buf,amt);
/external/valgrind/main/none/tests/amd64/
H A Dshrld.c8 ULong amt; variable
39 "\tmovq amt, %rcx\n"
60 "\tmovq amt, %rcx\n"
81 "\tmovq amt, %rcx\n"
103 "\tmovq amt, %rcx\n"
124 "\tmovq amt, %rcx\n"
145 "\tmovq amt, %rcx\n"
172 amt = (ULong)i;
185 amt = (ULong)i;
199 amt
[all...]
/external/grub/netboot/
H A Dfsys_tftp.c359 int amt = buf_read + saved_filepos - filepos; local
363 if (amt > size)
364 amt = size;
366 if (amt > 0)
369 grub_memmove (addr, buf + filepos - saved_filepos, amt);
370 size -= amt;
371 addr += amt;
372 filepos += amt;
373 ret += amt;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_hexio.c104 int amt, got; local
114 if( Tcl_GetIntFromObj(interp, objv[3], &amt) ) return TCL_ERROR;
116 zBuf = sqlite3_malloc( amt*2+1 );
129 got = fread(zBuf, 1, amt, in);
H A Dos.c63 int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){ argument
65 return id->pMethods->xRead(id, pBuf, amt, offset);
67 int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){ argument
69 return id->pMethods->xWrite(id, pBuf, amt, offset);
H A Dvdbemem.c890 ** to. offset and amt determine what portion of the data or key to retrieve.
903 int amt, /* Number of bytes to return. */
923 if( offset+amt<=available && (pMem->flags&MEM_Dyn)==0 ){
927 }else if( SQLITE_OK==(rc = sqlite3VdbeMemGrow(pMem, amt+2, 0)) ){
932 rc = sqlite3BtreeKey(pCur, offset, amt, pMem->z);
934 rc = sqlite3BtreeData(pCur, offset, amt, pMem->z);
936 pMem->z[amt] = 0;
937 pMem->z[amt+1] = 0;
942 pMem->n = amt;
900 sqlite3VdbeMemFromBtree( BtCursor *pCur, int offset, int amt, int key, Mem *pMem ) argument
H A Dprintf.c269 int amt; local
271 amt = 1;
272 while( (c=(*++fmt))!='%' && c!=0 ) amt++;
273 sqlite3StrAccumAppend(pAccum, bufpt, amt);
H A Dos_os2.c125 int amt, /* Number of bytes to read */
137 if( DosRead( pFile->h, pBuf, amt, &got ) != NO_ERROR ){
140 if( got == (ULONG)amt )
144 memset(&((char*)pBuf)[got], 0, amt-got);
156 int amt, /* Number of bytes to write */
170 assert( amt>0 );
171 while( amt > 0 &&
172 ( rc = DosWrite( pFile->h, (PVOID)pBuf, amt, &wrote ) ) == NO_ERROR &&
175 amt -= wrote;
179 return ( rc != NO_ERROR || amt > (in
122 os2Read( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ) argument
153 os2Write( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ) argument
[all...]
/external/clang/lib/Analysis/
H A DFormatString.cpp573 os << amt; local
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dmacasyncsocket.cc421 char ch, amt; local
422 amt = ::recv(this_socket->native_socket_, &ch, 1, MSG_PEEK);
423 if (amt == 0) {
431 } else if (amt > 0) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp729 CharUnits amt = CharUnits::fromQuantity(Value.getZExtValue()); local
733 svalBuilder.makeIntVal(amt.getQuantity(),
/external/chromium_org/third_party/icu/source/i18n/
H A Dnumfmt.cpp389 const CurrencyAmount* amt; local
390 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) {
393 const UChar* curr = amt->getISOCurrency();
399 num = &amt->getNumber();
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsmthred.cpp302 static int safeIncr(int &var, int amt) { argument
307 var += amt;
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c648 int amt,
652 return addNewAsyncWrite(p, ASYNC_WRITE, iOff, amt, pBuf);
645 asyncWrite( sqlite3_file *pFile, const void *pBuf, int amt, sqlite3_int64 iOff ) argument
/external/dropbear/
H A Dscp.c597 off_t i, amt, statbytes; local
673 amt = bp->cnt;
674 if (i + amt > stb.st_size)
675 amt = stb.st_size - i;
677 result = atomicio(read, fd, bp->buf, amt);
678 if (result != amt)
682 (void) atomicio(vwrite, remout, bp->buf, amt);
684 result = atomicio(vwrite, remout, bp->buf, amt);
685 if (result != amt)
691 bwlimit(amt);
832 int amt, exists, first, mask, mode, ofd, omode; local
[all...]
/external/icu4c/i18n/
H A Dnumfmt.cpp461 const CurrencyAmount* amt; local
462 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) {
465 const UChar* curr = amt->getISOCurrency();
471 num = &amt->getNumber();
/external/openssh/
H A Dscp.c728 size_t amt; local
811 amt = bp->cnt;
812 if (i + (off_t)amt > stb.st_size)
813 amt = stb.st_size - i;
815 if (atomicio(read, fd, bp->buf, amt) != amt)
820 (void)atomicio(vwrite, remout, bp->buf, amt);
823 if (atomicio6(vwrite, remout, bp->buf, amt, scpio,
824 &statbytes) != amt)
908 int amt, exist local
[all...]

Completed in 1176 milliseconds

123