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

123456789

/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/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/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 Dposixmodule.c9153 ins(PyObject *module, char *symbol, long value) function
9176 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
9177 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
9178 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
9179 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
9180 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
9181 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
9182 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
9215 if (ins(d, "F_OK", (long)F_OK)) return -1;
9218 if (ins(
[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/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/llvm/test/MC/Mips/cnmips/
H A Dinvalid.s16 ins $2, $3, -1, 1 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
17 ins $2, $3, 32, 1 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
18 ins $2, $3, 0, -1 # CHECK: :[[@LINE]]:20: error: expected immediate in range 1 .. 32
19 ins $2, $3, 0, 33 # CHECK: :[[@LINE]]:20: error: expected immediate in range 1 .. 32
/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...]
/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/r8/src/main/java/com/android/tools/r8/ir/code/
H A DJumpInstruction.java22 public JumpInstruction(Value out, List<? extends Value> ins) { argument
23 super(out, ins);
H A DArrayPut.java24 public ArrayPut(MemberType type, List<Value> ins) { argument
25 super(null, 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/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/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/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/ImageMagick/www/api/
H A Ddeprecate.php33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
37 data-ad-format="auto"></ins>
H A Dmagick-deprecate.php33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
37 data-ad-format="auto"></ins>
H A Dmagick.php33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
37 data-ad-format="auto"></ins>
H A Danimate.php33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
37 data-ad-format="auto"></ins>
H A Dsignature.php33 <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
37 data-ad-format="auto"></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);
H A DObjectImporter.java237 InputStream ins = new BufferedInputStream(sock.getInputStream());
238 skipHeader(ins);
239 ObjectInputStream din = new ObjectInputStream(ins);
/external/boringssl/ios-aarch64/crypto/fipsmodule/
H A Dghashv8-armx64.S42 ins v2.d[0],v1.d[1]
43 ins v1.d[1],v0.d[0]
83 ins v2.d[0],v1.d[1]
84 ins v1.d[1],v0.d[0]
176 ins v2.d[0],v1.d[1]
177 ins v1.d[1],v0.d[0]
213 ins v2.d[0],v1.d[1]
214 ins v1.d[1],v0.d[0]
/external/boringssl/linux-aarch64/crypto/fipsmodule/
H A Dghashv8-armx64.S43 ins v2.d[0],v1.d[1]
44 ins v1.d[1],v0.d[0]
84 ins v2.d[0],v1.d[1]
85 ins v1.d[1],v0.d[0]
177 ins v2.d[0],v1.d[1]
178 ins v1.d[1],v0.d[0]
214 ins v2.d[0],v1.d[1]
215 ins v1.d[1],v0.d[0]
/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;

Completed in 747 milliseconds

123456789