/external/iptables/utils/ |
H A D | nfbpf_compile.c | 18 struct bpf_insn *ins; local 46 ins = program.bf_insns; 47 for (i = 0; i < program.bf_len-1; ++ins, ++i) 48 printf("%u %u %u %u,", ins->code, ins->jt, ins->jf, ins->k); 50 printf("%u %u %u %u\n", ins->code, ins->jt, ins [all...] |
/external/libese/libapdu/ |
H A D | apdu.cpp | 23 CommandApdu::CommandApdu(const uint8_t cla, const uint8_t ins, const uint8_t p1, const uint8_t p2, argument 42 *it++ = ins;
|
/external/clang/test/Analysis/ |
H A D | outofbound.c | 95 static const double ins[] = {1e-8, 1e-7, 1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1, local 99 if (in < ins[eee]) { 104 if (in < ins[eee]) { 109 if (in < ins[eee]) { 114 if (in < ins[eee]) { 119 if (in < ins[eee]) { // expected-warning {{Access out-of-bound array element (buffer overflow)}}
|
/external/pcre/dist2/src/sljit/ |
H A D | sljitNativeMIPS_64.c | 34 sljit_ins ins; local 85 ins = (shift == 32) ? DSLL32 : DSLL; 87 ins |= SH_IMM(shift); 88 FAIL_IF(push_inst(compiler, ins | TA(dst_ar) | DA(dst_ar), dst_ar)); 142 ins = op_dimm32; \ 146 ins = (op & SLJIT_I32_OP) ? op_imm : op_dimm; \ 148 FAIL_IF(push_inst(compiler, ins | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \ 150 FAIL_IF(push_inst(compiler, ins | T(src1) | D(dst) | SH_IMM(src2), DR(dst))); \ 153 ins = (op & SLJIT_I32_OP) ? op_v : op_dv; \ 155 FAIL_IF(push_inst(compiler, ins | 163 sljit_ins ins; local [all...] |
/external/r8/src/main/java/com/android/tools/r8/ir/code/ |
H A D | ArrayPut.java | 24 public ArrayPut(MemberType type, List<Value> ins) { argument 25 super(null, ins);
|
H A D | JumpInstruction.java | 22 public JumpInstruction(Value out, List<? extends Value> ins) { argument 23 super(out, ins);
|
/external/javassist/src/main/javassist/tools/rmi/ |
H A D | AppletServer.java | 144 private void processRMI(InputStream ins, OutputStream outs) argument 147 ObjectInputStream in = new ObjectInputStream(ins); 221 private void lookupName(String cmd, InputStream ins, OutputStream outs) argument 224 ObjectInputStream in = new ObjectInputStream(ins);
|
/external/libese/libapdu/include/apdu/ |
H A D | apdu.h | 35 CommandApdu(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2) argument 36 : CommandApdu(cla, ins, p1, p2, 0, 0) {} 37 CommandApdu(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2, size_t lc, size_t le);
|
/external/python/cpython2/Modules/ |
H A D | fcntlmodule.c | 426 ins(PyObject* d, char* symbol, long value) function 436 #define INS(x) if (ins(d, #x, (long)x)) return -1 441 if (ins(d, "LOCK_SH", (long)LOCK_SH)) return -1; 442 if (ins(d, "LOCK_EX", (long)LOCK_EX)) return -1; 443 if (ins(d, "LOCK_NB", (long)LOCK_NB)) return -1; 444 if (ins(d, "LOCK_UN", (long)LOCK_UN)) return -1; 447 if (ins(d, "LOCK_MAND", (long)LOCK_MAND)) return -1; 450 if (ins(d, "LOCK_READ", (long)LOCK_READ)) return -1; 453 if (ins(d, "LOCK_WRITE", (long)LOCK_WRITE)) return -1; 456 if (ins( [all...] |
H A D | puremodule.c | 936 ins(d, name, val) function 968 ins(d, "PURIFY_VERSION", PURE_PURIFY_VERSION); 977 ins(d, "PURIFY_EXIT_ERRORS", PURIFY_EXIT_ERRORS); 980 ins(d, "PURIFY_EXIT_LEAKS", PURIFY_EXIT_LEAKS); 983 ins(d, "PURIFY_EXIT_PLEAKS", PURIFY_EXIT_PLEAKS); 988 ins(d, "QUANTIFY_VERSION", PURE_QUANTIFY_VERSION);
|
/external/clang/test/CXX/class.access/ |
H A D | p6.cpp | 165 A ins; member in class:test7::B 168 void foo(int arg[__builtin_offsetof(B, ins)]);
|
/external/llvm/test/MC/X86/ |
H A D | x86-32.s | 636 ins (%dx), %es:(%edi) label
|
H A D | intel-syntax.s | 757 ins byte ptr [eax], dx label 760 // CHECK-STDERR-NEXT: ins byte ptr [eax], dx
|
H A D | x86-64.s | 296 ins (%dx), %es:(%rdi) label
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
H A D | nv50_ir_util.cpp | 65 Item *ins = new Item(data); local 67 ins->next = pos->next; 68 ins->prev = pos; 69 pos->next->prev = ins; 70 pos->next = ins; 73 term = ins;
|
/external/python/cpython2/RISCOS/Modules/ |
H A D | riscosmodule.c | 407 ins(PyObject *module, char *symbol, long value) function 417 if (ins(d, "F_OK", (long)F_OK)) return -1; 420 if (ins(d, "R_OK", (long)R_OK)) return -1; 423 if (ins(d, "W_OK", (long)W_OK)) return -1; 426 if (ins(d, "X_OK", (long)X_OK)) return -1; 429 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1; 432 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1; 435 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1; 438 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1; 441 if (ins( [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
H A D | antlr3baserecognizer.c | 276 pANTLR3_INPUT_STREAM ins; local 281 ins = NULL; 294 ins = lexer->input; 295 is = ins->istream; 338 ex->line = ins->getLine (ins); /* Line number comes from stream */ 339 ex->charPositionInLine = ins->getCharPositionInLine (ins); /* Line offset also comes from the stream */ 341 ex->streamName = ins->fileName;
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
H A D | LogManagerTest.java | 967 public void readConfiguration(InputStream ins) throws IOException { argument 969 super.readConfiguration(ins);
|
/external/xmlrpcpp/src/ |
H A D | XmlRpcValue.cpp | 450 std::back_insert_iterator<BinaryData> ins = std::back_inserter(*(_value.asBinary)); local 451 decoder.get(asString.begin(), asString.end(), ins, iostatus); 464 std::back_insert_iterator<std::vector<char> > ins = std::back_inserter(base64data); local 465 encoder.put(_value.asBinary->begin(), _value.asBinary->end(), ins, iostatus, base64<>::crlf());
|
/external/javassist/src/main/javassist/ |
H A D | CtClassType.java | 92 CtClassType(InputStream ins, ClassPool cp) throws IOException { argument 94 classfile = new ClassFile(new DataInputStream(ins));
|
/external/pdfium/core/fxcodec/codec/ |
H A D | fx_codec_fax.cpp | 255 uint8_t ins = ins_array[ins_off++]; local 256 if (ins == 0xff) 267 int next_off = ins_off + ins * 3;
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/ |
H A D | X86AsmParser.cpp | 812 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]" 813 if (Name.startswith("ins") && Operands.size() == 3 && 858 const char *ins; local 862 ins = "lodsb"; 864 ins = "lodsw"; 866 ins = "lodsl"; 868 ins = "lodsq"; 870 ins = NULL; 871 if (ins ! 888 const char *ins; local [all...] |
/external/syslinux/com32/modules/ |
H A D | pxechn.c | 500 int pxechn_parse_2bhex(char ins[]) argument 505 if (!ins) { 509 } else if (((n0 = pxechn_to_hex(ins[0])) >= 0) 510 && ((n1 = pxechn_to_hex(ins[1])) >= 0)) {
|
/external/libxml2/ |
H A D | rngparser.c | 89 xmlNodePtr ins; /* the current insertion node */ member in struct:_xmlCRelaxNGParserCtxt
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler.c | 1350 struct etna_inst ins = { }; local 1351 ins.opcode = INST_OPCODE_SELECT; 1352 ins.cond = INST_CONDITION_LT; 1353 ins.dst = etna_native_to_dst(inner_temp, INST_COMPS_Y); 1354 ins.src[0] = ins.src[2] = alloc_imm_f32(c, 0.0); 1355 ins.src[1] = swizzle(src[0], SWIZZLE(Y, Y, Y, Y)); 1356 emit_inst(c, &ins); 1367 struct etna_inst ins = { }; local 1368 ins 1386 struct etna_inst ins[3] = { }; local 1422 struct etna_inst ins[2] = { }; local 1523 struct etna_inst *p, ins[9] = { }; local 1534 struct etna_inst ins = { }; local 1618 struct etna_inst ins[2] = { }; local 1645 struct etna_inst ins[2] = { }; local [all...] |