Searched refs:ins (Results 1 - 25 of 139) sorted by relevance

123456

/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/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dannotate.h14 struct ins;
31 struct ins *ins; member in struct:ins_operands::__anon25174::__anon25176
40 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
44 struct ins { struct
49 bool ins__is_jump(const struct ins *ins);
50 bool ins__is_call(const struct ins *ins);
60 struct ins *ins; member in struct:disasm_line
[all...]
H A Dannotate.c24 static struct ins *ins__find(const char *name);
35 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, argument
38 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw);
41 int ins__scnprintf(struct ins *ins, char *bf, size_t size, argument
44 if (ins->ops->scnprintf)
45 return ins->ops->scnprintf(ins, bf, size, ops);
47 return ins__raw_scnprintf(ins, b
87 call__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
104 ins__is_call(const struct ins *ins) argument
123 jump__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
134 ins__is_jump(const struct ins *ins) argument
193 lock__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
264 mov__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
306 dec__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
411 const struct ins *ins = insp; local
[all...]
/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/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dnacl_subprocess.cc83 params->ins()[i]->u.bval = input;
88 params->ins()[i]->u.dval = input;
101 params->ins()[i]->arrays.carr = input;
102 params->ins()[i]->u.count = static_cast<nacl_abi_size_t>(len);
107 params->ins()[i]->u.hval = input;
112 params->ins()[i]->u.ival = input;
117 params->ins()[i]->u.lval = input;
128 params->ins()[i]->arrays.str = input;
H A Dsrpc_params.h36 NaClSrpcArg** ins() const { return const_cast<NaClSrpcArg**>(ins_); } function in class:plugin::SrpcParams
H A Dsrpc_client.cc26 const char* ins,
34 ins_(STRDUP(ins)),
46 char* ins() const { return ins_; } function in class:plugin::MethodInfo
156 return params->Init(method_info->ins(), method_info->outs());
181 params->ins(),
24 MethodInfo(const RpcFunction function_ptr, const char* name, const char* ins, const char* outs, const uint32_t index = UINT_MAX) argument
/external/llvm/test/MC/AArch64/
H A Dneon-simd-copy.s9 ins v2.b[2], w1
10 ins v7.h[7], w14
11 ins v20.s[0], w30
12 ins v1.d[1], x7
19 // CHECK: {{mov|ins}} v2.b[2], w1 // encoding: [0x22,0x1c,0x05,0x4e]
20 // CHECK: {{mov|ins}} v7.h[7], w14 // encoding: [0xc7,0x1d,0x1e,0x4e]
21 // CHECK: {{mov|ins}} v20.s[0], w30 // encoding: [0xd4,0x1f,0x04,0x4e]
22 // CHECK: {{mov|ins}} v1.d[1], x7 // encoding: [0xe1,0x1c,0x18,0x4e]
24 // CHECK: {{mov|ins}} v2.b[2], w1 // encoding: [0x22,0x1c,0x05,0x4e]
25 // CHECK: {{mov|ins}} v
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dgetpc.h99 char ins[16]; member in struct:CallUnrollInfo
100 // How many bytes to match from ins array?
147 callunrollinfo[i].ins, callunrollinfo[i].ins_size)) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dgetpc.h97 char ins[16]; member in struct:CallUnrollInfo
98 // How many bytes to match from ins array?
144 callunrollinfo[i].ins, callunrollinfo[i].ins_size)) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/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/mesa3d/src/gallium/drivers/nv50/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/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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java414 InputStream[] ins = new InputStream[valueCount];
417 ins[i] = new FileInputStream(entry.getCleanFile(i));
422 if (ins[i] != null) {
423 Util.closeQuietly(ins[i]);
437 return new Snapshot(key, entry.sequenceNumber, ins, entry.lengths);
668 private final InputStream[] ins; field in class:DiskLruCache.Snapshot
671 private Snapshot(String key, long sequenceNumber, InputStream[] ins, long[] lengths) { argument
674 this.ins = ins;
689 return ins[inde
[all...]
/external/openfst/src/include/fst/
H A Dlabel-reachable.h161 StateId ins = fst_->NumStates(); local
163 FindIntervals(ins);
410 StateId ins = fst_->NumStates(); local
411 StateId ons = ins;
413 vector<ssize_t> indeg(ins, 0);
416 for (StateId s = 0; s < ins; ++s) {
467 void FindIntervals(StateId ins) { argument
477 isets.resize(ins);
493 for (ssize_t s = 0; s < ins; ++s) {
500 VLOG(2) << "# of states: " << ins;
502 VLOG(2) << "# of intervals/state: " << nintervals/ins; local
[all...]
/external/jpeg/
H A Dmips_idct_le.S104 ins $t0, $v0, 16, 16 # ... tmp0
143 ins $t2, $v0, 16, 16 # ... tmp1
148 ins $t4, $v1, 16, 16 # ... tmp2
153 ins $t6, $v0, 16, 16 # ... tmp3
177 ins $t1, $v0, 16, 16 # ... tmp4
185 ins $t7, $v1, 16, 16 # ... tmp7
193 ins $t5, $v0, 16, 16 # ... tmp6
197 ins $t3, $v1, 16, 16 # ... tmp5
341 ins $t0, $s0, 16, 16 # A a
357 ins
[all...]
/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);
H A DObjectImporter.java237 InputStream ins = new BufferedInputStream(sock.getInputStream());
238 skipHeader(ins);
239 ObjectInputStream din = new ObjectInputStream(ins);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dactions.c195 re->d.RuleOp.ins = i;
607 r->d.RuleOp.ins = NULL;
644 Ins *ins, *eoi; local
671 ins = malloc(sizeof(Ins)*(re->size+1));
672 memset(ins, 0, (re->size+1)*sizeof(Ins));
673 RegExp_compile(re, rep, ins);
674 eoi = &ins[re->size];
678 optimize(ins);
680 unmark(&ins[j]);
681 if(ins[
[all...]
/external/chromium_org/third_party/libjpeg_turbo/simd/
H A Djsimd_arm64_neon.S57 ins \xi\xilen[0], \x0\xilen[0]
58 ins \x1\xilen[0], \x0\xilen[1]
273 ins v16.2d[1], v17.2d[0] /* 128 bit q8 */
277 ins v18.2d[1], v19.2d[0] /* 128 bit q9 */
281 ins v20.2d[1], v21.2d[0] /* 128 bit q10 */
285 ins v22.2d[1], v23.2d[0] /* 128 bit q11 */
289 ins v24.2d[1], v25.2d[0] /* 128 bit q12 */
293 ins v28.2d[1], v29.2d[0] /* 128 bit q14 */
296 ins v26.2d[1], v27.2d[0] /* 128 bit q13 */
301 ins v3
[all...]
/external/javassist/src/main/javassist/
H A DClassPoolTail.java331 InputStream ins = null;
335 ins = list.path.openClassfile(classname);
342 if (ins == null)
345 return ins;
/external/pcre/dist/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_INT_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_INT_OP) ? op_v : op_dv; \
155 FAIL_IF(push_inst(compiler, ins |
163 sljit_ins ins; local
[all...]
/external/glide/third_party/disklrucache/
H A Ddisklrucache-2.0.2.jar ... final long sequenceNumber private final java.io.InputStream[] ins private final long[] lengths final synthetic com.jakewharton. ...
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dannotate.c170 if (dl->ins && dl->ins->ops->scnprintf) {
171 if (ins__is_jump(dl->ins)) {
177 } else if (ins__is_call(dl->ins)) {
202 if (!dl || !dl->ins || !ins__is_jump(dl->ins)
451 if (!ins__is_call(dl->ins))
503 if (!ins__is_jump(dl->ins))
793 else if (!browser->selection->ins) {
/external/eigen/bench/
H A DBenchSparseUtil.h90 mtl::matrix::inserter<MtlSparse> ins(dst);
93 ins[it.index()][j] = it.value();

Completed in 8407 milliseconds

123456