Searched defs:ins (Results 1 - 25 of 54) sorted by relevance

123

/external/iptables/utils/
H A Dnfbpf_compile.c18 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 Dapdu.cpp23 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 Doutofbound.c95 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 DsljitNativeMIPS_64.c34 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 DArrayPut.java24 public ArrayPut(MemberType type, List<Value> ins) { argument
25 super(null, ins);
H A DJumpInstruction.java22 public JumpInstruction(Value out, List<? extends Value> ins) { argument
23 super(out, ins);
/external/javassist/src/main/javassist/tools/rmi/
H A DAppletServer.java144 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 Dapdu.h35 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 Dfcntlmodule.c426 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 Dpuremodule.c936 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 Dp6.cpp165 A ins; member in class:test7::B
168 void foo(int arg[__builtin_offsetof(B, ins)]);
/external/llvm/test/MC/X86/
H A Dx86-32.s636 ins (%dx), %es:(%edi) label
H A Dintel-syntax.s757 ins byte ptr [eax], dx label
760 // CHECK-STDERR-NEXT: ins byte ptr [eax], dx
H A Dx86-64.s296 ins (%dx), %es:(%rdi) label
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_util.cpp65 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 Driscosmodule.c407 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 Dantlr3baserecognizer.c276 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 DLogManagerTest.java967 public void readConfiguration(InputStream ins) throws IOException { argument
969 super.readConfiguration(ins);
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp450 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 DCtClassType.java92 CtClassType(InputStream ins, ClassPool cp) throws IOException { argument
94 classfile = new ClassFile(new DataInputStream(ins));
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_fax.cpp255 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 DX86AsmParser.cpp812 // 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 Dpxechn.c500 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 Drngparser.c89 xmlNodePtr ins; /* the current insertion node */ member in struct:_xmlCRelaxNGParserCtxt
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler.c1350 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...]

Completed in 5304 milliseconds

123