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

123

/external/smali/util/src/main/java/org/jf/util/
H A DTwoColumnOutput.java147 * @param amt >= 0; the number of spaces to write
149 private static void writeSpaces(Writer out, int amt) throws IOException { argument
150 while (amt > 0) {
152 amt--;
/external/valgrind/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/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/openssh/openbsd-compat/
H A Dbcrypt_pbkdf.c119 size_t i, j, amt, stride; local
132 amt = (keylen + stride - 1) / stride;
163 amt = MINIMUM(amt, keylen);
164 for (i = 0; i < amt; i++) {
/external/tcpdump/
H A Dprint-ripng.c113 register u_int amt; local
120 amt = ndo->ndo_snapend - dat;
121 i = min(length, amt);
/external/clang/lib/Analysis/
H A DFormatString.cpp652 os << amt; local
/external/webrtc/webrtc/base/
H A Dmacasyncsocket.cc427 char ch, amt; local
428 amt = ::recv(this_socket->native_socket_, &ch, 1, MSG_PEEK);
429 if (amt == 0) {
437 } else if (amt > 0) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp780 CharUnits amt = CharUnits::fromQuantity(Value.getZExtValue()); local
784 svalBuilder.makeIntVal(amt.getQuantity(),
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/useful-harnesses/
H A Di64operations.c446 i64_shl(int64_t a, int amt) { argument
447 return a << amt;
456 u64_shl(uint64_t a, int amt) { argument
457 return a << amt;
466 i64_srl(int64_t a, int amt) { argument
467 return a >> amt;
476 u64_srl(uint64_t a, int amt) { argument
477 return a >> amt;
486 i64_sra(int64_t a, int amt) { argument
487 return a >> amt;
496 u64_sra(uint64_t a, int amt) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DRBBITestMonkey.java1695 * @param amt The amount to adjust the string by.
1699 static int moveIndex32(StringBuffer s, int pos, int amt) { argument
1702 if (amt>0) {
1703 for (i=0; i<amt; i++) {
1717 for (i=0; i>amt; i--) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBITestMonkey.java1694 * @param amt The amount to adjust the string by.
1698 static int moveIndex32(StringBuffer s, int pos, int amt) { argument
1701 if (amt>0) {
1702 for (i=0; i<amt; i++) {
1716 for (i=0; i>amt; i--) {
/external/openssh/
H A Dscp.c764 size_t amt, nr; local
832 amt = bp->cnt;
833 if (i + (off_t)amt > stb.st_size)
834 amt = stb.st_size - i;
837 bp->buf, amt)) != amt) {
839 memset(bp->buf + nr, 0, amt - nr);
844 (void)atomicio(vwrite, remout, bp->buf, amt);
845 memset(bp->buf, 0, amt);
848 if (atomicio6(vwrite, remout, bp->buf, amt, scpi
929 int amt, exists, first, ofd; local
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h282 : start(amountStart), length(amountLength), hs(howSpecified), amt(amount),
286 : start(nullptr),length(0), hs(valid ? NotSpecified : Invalid), amt(0),
300 return amt;
305 return amt;
325 return amt + 1;
335 unsigned amt; member in class:clang::analyze_format_string::OptionalAmount
/external/icu/icu4c/source/i18n/
H A Dnumfmt.cpp511 const CurrencyAmount* amt; local
512 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) {
515 //const UChar* curr = amt->getISOCurrency();
516 u_strcpy(save, amt->getISOCurrency());
517 num = &amt->getNumber();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1423 unsigned amt = fieldFromInstruction32(Insn, 7, 5); local
1424 unsigned imm = ARM_AM::getAM2Opc(Op, amt, Opc, idx_mode);
/external/valgrind/VEX/priv/
H A Dhost_arm_isel.c1762 ARMRI5* amt = ARMRI5_I5(16); local
1763 addInstr(env, ARMInstr_Shift(ARMsh_SHL, dst, src, amt));
1764 addInstr(env, ARMInstr_Shift(ARMsh_SHR, dst, dst, amt));
1771 ARMRI5* amt = ARMRI5_I5(e->Iex.Unop.op==Iop_16Sto32 ? 16 : 24); local
1772 addInstr(env, ARMInstr_Shift(ARMsh_SHL, dst, src, amt));
1773 addInstr(env, ARMInstr_Shift(ARMsh_SAR, dst, dst, amt));
1830 ARMRI5* amt = ARMRI5_I5(31); local
1836 addInstr(env, ARMInstr_Shift(ARMsh_SHL, dst, dst, amt));
1837 addInstr(env, ARMInstr_Shift(ARMsh_SAR, dst, dst, amt));
2261 ARMRI5* amt local
[all...]
H A Dhost_mips_isel.c1378 UShort amt; local
1381 amt = 31;
1385 amt = 31;
1389 amt = 31;
1393 amt = 16;
1397 amt = 48;
1401 amt = 24;
1405 amt = 24;
1409 amt = 56;
1413 amt
[all...]
H A Dhost_x86_defs.c624 X86Instr* X86Instr_Sh3232 ( X86ShiftOp op, UInt amt, HReg src, HReg dst ) { argument
628 i->Xin.Sh3232.amt = amt;
973 if (i->Xin.Sh3232.amt == 0)
976 vex_printf(" $%d,", (Int)i->Xin.Sh3232.amt);
1272 if (i->Xin.Sh3232.amt == 0)
2382 if (i->Xin.Sh3232.amt == 0) {
H A Dhost_amd64_isel.c1491 UInt amt = srcIs16 ? 48 : 56; local
1493 addInstr(env, AMD64Instr_Sh64(Ash_SHL, amt, dst));
1494 addInstr(env, AMD64Instr_Sh64(Ash_SAR, amt, dst));
H A Dhost_arm64_isel.c2662 UInt amt = argR->Iex.Const.con->Ico.U8; local
2722 /* For left shifts, the allowable amt values are
2725 if (op != ARM64vecshi_INVALID && amt >= limLo && amt <= limHi) {
2728 addInstr(env, ARM64Instr_VShiftImmV(op, dst, src, amt));
2737 if (amt == 0) {
2778 UInt amt = argR->Iex.Const.con->Ico.U8; local
2828 if (op != ARM64vecshi_INVALID && amt >= 1 && amt <= limit) {
2838 addInstr(env, ARM64Instr_VShiftImmV(op, dst, src, amt));
2876 UInt amt = argR->Iex.Const.con->Ico.U8; local
2977 UInt amt = argAmt->Iex.Const.con->Ico.U8; local
[all...]
H A Dhost_arm_defs.c1507 ARMInstr* ARMInstr_NShl64 ( HReg dst, HReg src, UInt amt )
1513 i->ARMin.NShl64.amt = amt;
1514 vassert(amt >= 1 && amt <= 63);
2007 vex_printf(", #%u", i->ARMin.NShl64.amt);
4719 UInt amt = i->ARMin.NShl64.amt; local
4720 vassert(amt >= 1 && amt <
[all...]
H A Dhost_x86_defs.h443 UInt amt; /* shift amount, or 0 means %cl */ member in struct:__anon24227::__anon24228::__anon24237
669 extern X86Instr* X86Instr_Sh3232 ( X86ShiftOp, UInt amt, HReg src, HReg dst );
H A Dhost_x86_isel.c1261 UInt amt = e->Iex.Unop.op==Iop_16Sto32 ? 16 : 24; local
1263 addInstr(env, X86Instr_Sh32(Xsh_SHL, amt, dst));
1264 addInstr(env, X86Instr_Sh32(Xsh_SAR, amt, dst));
2305 -- shift amt %cl % 32
2307 -- shift amt %cl % 32
2328 /* Ok. Now shift amt is in %ecx, and value is in tHi/tLo
2347 -- shift amt %cl % 32
2349 -- shift amt %cl % 32
2370 /* Ok. Now shift amt is in %ecx, and value is in tHi/tLo
/external/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp1345 int32_t amt = (int32_t) DATA[i+2]; local
1353 log(UnicodeString(" add (HOUR,") + (amt<0?"":"+")+amt + ")= ");
1354 cal->add(UCAL_HOUR, amt,status);
1357 log(UnicodeString(" roll(HOUR,") + (amt<0?"":"+")+amt + ")= ");
1358 cal->roll(UCAL_HOUR, amt,status);
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1558 unsigned amt = fieldFromInstruction(Insn, 7, 5); local
1559 if (Opc == ARM_AM::ror && amt == 0)
1561 unsigned imm = ARM_AM::getAM2Opc(Op, amt, Opc, idx_mode);

Completed in 844 milliseconds

123