HomeSort by relevance Sort by last modified time
    Searched defs:ins (Results 51 - 75 of 178) sorted by null

1 23 4 5 6 7 8

  /external/libxml2/
rngparser.c 89 xmlNodePtr ins; /* the current insertion node */ member in struct:_xmlCRelaxNGParserCtxt
    [all...]
  /external/llvm/test/MC/X86/
x86-64.s 296 ins (%dx), %es:(%rdi) label
    [all...]
  /external/python/cpython2/Modules/
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);
arraymodule.c 919 ins(arrayobject *self, Py_ssize_t where, PyObject *v) function
1068 return ins(self, i, v);
1115 return ins(self, Py_SIZE(self), v);
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/
test_abc.py 142 def ins(self): member in class:ABCTestHarness
143 # Lazily set ins on the class.
145 ins = cls()
146 self.__class__.ins = ins
147 return ins
162 self.assertIsNone(self.ins.find_module('something', None))
166 self.ins.invalidate_caches()
185 self.assertEqual((None, []), self.ins.find_loader('something'))
188 self.assertEqual(None, self.ins.find_module('something')
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
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 != NULL)
888 const char *ins; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 761 __m128i all1s, ina, ins; local
774 ins = _mm_unpacklo_epi8(in0, _mm_setzero_si128());
775 ina = _mm_shufflelo_epi16(ins, 0xFF);
780 t0 = _mm_add_epi16(t0, ins);
782 ins = _mm_unpackhi_epi8(in0, _mm_setzero_si128());
783 ina = _mm_shufflelo_epi16(ins, 0xFF);
788 t1 = _mm_add_epi16(t1, ins);
790 ins = _mm_unpacklo_epi8(in1, _mm_setzero_si128());
791 ina = _mm_shufflelo_epi16(ins, 0xFF);
1079 __m128i all1s, ina, outa, ins, outs; local
1150 __m128i all1s, ina, ins, outa, outs; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 173 InputStream ins = Channels.newInputStream(rbChannel); local
174 assertNotNull(ins);
179 assertEquals(1, ins.available());
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodType.java 396 int ins = checkPtypes(ptypesToInsert); local
397 checkSlotCount(parameterSlotCount() + ptypesToInsert.length + ins);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-d10v.c 699 unsigned long ins, mod[2]; local
744 ins = insn1;
749 ins = insn2;
762 regno = (ins >> shift) & mask;
836 unsigned long ins, mod[2], used[2]; local
879 ins = insn1;
884 ins = insn2;
897 regno = (ins >> shift) & mask;
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
archive.cc 646 std::pair<Nested_archive_table::iterator, bool> ins = local
648 gold_assert(ins.second);
    [all...]
dynobj.cc 1558 std::pair<Version_table::iterator, bool> ins = local
1607 std::pair<Version_table::iterator, bool> ins = local
    [all...]
plugin.cc 890 gold_error(_("input files added by plug-ins in --incremental mode not "
1040 std::pair<Comdat_map::iterator, bool> ins = local
1045 if (ins.second)
1046 ins.first->second = layout->find_or_add_kept_section(comdat_key,
1050 return ins.first->second;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
arraymodule.c 909 ins(arrayobject *self, Py_ssize_t where, PyObject *v) function
1058 return ins(self, i, v);
1093 return ins(self, Py_SIZE(self), v);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
listobject.c 2691 PyObject *ins, *seq; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
arraymodule.c 909 ins(arrayobject *self, Py_ssize_t where, PyObject *v) function
1058 return ins(self, i, v);
1093 return ins(self, Py_SIZE(self), v);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
listobject.c 2690 PyObject *ins, *seq; local
    [all...]
  /external/gflags/src/
gflags.cc 718 pair<FlagIterator, bool> ins = local
720 if (ins.second == false) { // means the name was already in the map
721 if (strcmp(ins.first->second->filename(), flag->filename()) != 0) {
725 ins.first->second->filename(),
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_compiler.c 1350 struct etna_inst ins = { }; local
1367 struct etna_inst ins = { }; local
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/pcre/dist2/src/sljit/
sljitNativeARM_32.c 2484 sljit_uw cc, ins; local
    [all...]
sljitNativeARM_64.c 127 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)
131 *ptr = ins;
353 sljit_ins ins; local
401 ins = 1 << 22;
403 ins = (0x3f - ((len << 1) - 1)) << 10;
406 return ins | ((len - ones - 1) << 10) | ((len - ones - right) << 16);
408 return ins | ((ones - 1) << 10) | ((len - right) << 16);
    [all...]
sljitNativeARM_T2_32.c 1981 sljit_ins cc, ins; local
    [all...]
  /external/python/cpython2/Objects/
listobject.c 2694 PyObject *ins, *seq; local
    [all...]
  /external/python/cpython3/Modules/
arraymodule.c 1006 ins(arrayobject *self, Py_ssize_t where, PyObject *v) function
1206 return ins(self, i, v);
    [all...]
  /external/python/cpython3/Objects/
listobject.c 2550 PyObject *ins, *seq; local
    [all...]

Completed in 606 milliseconds

1 23 4 5 6 7 8