HomeSort by relevance Sort by last modified time
    Searched defs:ins (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/iptables/utils/
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->jf, ins->k)
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ARTBootASLRTest.java 33 FileInputStream ins = new FileInputStream("/proc/self/maps"); local
34 InputStreamReader reader = new InputStreamReader(ins, Charset.defaultCharset());
51 ins.close();
  /external/pcre/dist/sljit/
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_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 | S(src2) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
163 sljit_ins ins; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.h 43 Allocation *const* ins; member in struct:android::renderscript::CpuScriptGroupImpl::ScriptList
rsCpuScriptGroup.cpp 64 if (sl->ins[ct]) {
67 mkinfo->inPtr[0] = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr;
69 mkinfo->inStride[0] = sl->ins[ct]->mHal.state.elementSizeBytes;
74 sl->ins[ct]->mHal.drvState.lod[0].stride * kinfo->current.y);
76 } else if (sl->ins[ct]->mHal.drvState.lod[0].dimY > kinfo->lid) {
79 sl->ins[ct]->mHal.drvState.lod[0].stride * kinfo->lid);
127 Vector<Allocation *> ins; local
197 ins.add(ain);
209 for (size_t ct=0; ct < ins.size(); ct++) {
217 if (ins[ct] == nullptr)
    [all...]
  /external/clang/test/Analysis/
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)}}
  /frameworks/base/core/tests/coretests/src/android/text/
PackedIntVectorTest.java 29 int[] ins = new int[width]; local
46 ins[j] = i + j;
52 p.insertAt(at, ins);
  /frameworks/rs/
rsScriptC_Lib.cpp 248 const Allocation *ins[1] = {in}; local
249 target->runForEach(rsc, /* root slot */ 0, ins,
250 sizeof(ins) / sizeof(RsAllocation), out, usr,
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
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;
  /packages/apps/Browser/src/com/android/browser/homepages/
HomeProvider.java 96 InputStream ins = context.getContentResolver() local
98 return new WebResourceResponse("text/html", "utf-8", ins);
103 PipedInputStream ins = new PipedInputStream(); local
104 PipedOutputStream outs = new PipedOutputStream(ins);
106 return new WebResourceResponse("text/html", "utf-8", ins);
Template.java 271 InputStream ins = context.getResources().openRawResource(id); local
273 byte[] buf = new byte[ins.available()];
274 ins.read(buf);
  /external/clang/test/CXX/class.access/
p6.cpp 165 A ins; member in class:test7::B
168 void foo(int arg[__builtin_offsetof(B, ins)]);
  /external/javassist/src/main/javassist/
ClassPoolTail.java 331 InputStream ins = null; local
335 ins = list.path.openClassfile(classname);
342 if (ins == null)
345 return ins;
  /external/javassist/src/main/javassist/tools/rmi/
ObjectImporter.java 237 InputStream ins = new BufferedInputStream(sock.getInputStream()); local
238 skipHeader(ins);
239 ObjectInputStream din = new ObjectInputStream(ins);
  /external/linux-tools-perf/src/tools/perf/util/
annotate.h 14 struct ins;
31 struct ins *ins; member in struct:ins_operands::__anon14134::__anon14136
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...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java 82 Instruction21c ins = (Instruction21c)instruction; local
85 fieldRef = (FieldReference)ins.getReference();
  /packages/apps/Camera/tests/src/com/android/camera/activity/
CameraTestCase.java 151 InputStream ins = getActivity().getResources().openRawResource(R.raw.blank); local
158 while((size = ins.read(buffer, 0, 1024)) >= 0){
164 Util.closeSilently(ins);
  /packages/apps/Camera2/tests_camera/src/com/android/camera/activity/
CameraTestCase.java 151 InputStream ins = getActivity().getResources().openRawResource(R.raw.blank); local
158 while((size = ins.read(buffer, 0, 1024)) >= 0){
164 CameraUtil.closeSilently(ins);
  /libcore/luni/src/test/java/libcore/java/sql/
OldStatementTest.java 1269 InsertThread ins = new InsertThread((PreparedStatement)st); local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
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;
    [all...]
  /external/mockito/src/org/mockito/internal/
MockitoCore.java 172 List<Invocation> ins = invocationContainer.getInvocations(); local
173 for (Invocation in : ins) {
  /external/openfst/src/include/fst/
label-reachable.h 161 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) {
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/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 383 FX_BYTE ins = ins_array[ins_off++]; local
384 if (ins == 0xff) {
395 int next_off = ins_off + ins * 3;
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 490 InputStream[] ins = new InputStream[valueCount]; local
493 ins[i] = new FileInputStream(entry.getCleanFile(i));
506 return new Snapshot(key, entry.sequenceNumber, ins);
733 private final InputStream[] ins; field in class:DiskLruCache.Snapshot
735 private Snapshot(String key, long sequenceNumber, InputStream[] ins) {
738 this.ins = ins;
754 return ins[index];
765 for (InputStream in : ins) {
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 490 InputStream[] ins = new InputStream[valueCount]; local
493 ins[i] = new FileInputStream(entry.getCleanFile(i));
506 return new Snapshot(key, entry.sequenceNumber, ins);
733 private final InputStream[] ins; field in class:DiskLruCache.Snapshot
735 private Snapshot(String key, long sequenceNumber, InputStream[] ins) {
738 this.ins = ins;
754 return ins[index];
765 for (InputStream in : ins) {
    [all...]

Completed in 823 milliseconds

1 2 3 4