Searched defs:orig (Results 1 - 25 of 74) sorted by relevance

123

/external/valgrind/main/VEX/unused/
H A Ddispatch.c14 char* find_translation ( char* orig )
18 if (transtab[i].orig == orig)
28 char* orig; member in struct:__anon13465
44 void add_translation ( char* orig, int orig_size, char* trans, int trans_size ) argument
48 transtab[n_transtab_used].orig = orig;
/external/dropbear/libtomcrypt/src/encauth/gcm/
H A Dgcm_memory.c46 void *orig; local
69 orig = gcm = XMALLOC(sizeof(*gcm));
71 orig = gcm = XMALLOC(sizeof(*gcm) + 16);
78 * note that we only modify gcm and keep orig intact. This code is not portable
101 XFREE(orig);
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java39 public String getConstructor(CtClass c, String desc, MethodInfo orig) argument
56 ExceptionsAttribute ea = orig.getExceptionsAttribute();
94 * @param orig the method info of the private method.
98 MethodInfo orig)
115 ExceptionsAttribute ea = orig.getExceptionsAttribute();
97 getMethodAccessor(String name, String desc, String accDesc, MethodInfo orig) argument
/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.c145 ppHReg(map->orig[i]);
160 void addToHRegRemap ( HRegRemap* map, HReg orig, HReg replacement ) argument
164 if (map->orig[i] == orig)
166 if (!hregIsVirtual(orig))
167 vpanic("addToHRegMap: orig is not a vreg");
172 map->orig[map->n_used] = orig;
178 HReg lookupHRegRemap ( HRegRemap* map, HReg orig )
181 if (!hregIsVirtual(orig))
[all...]
H A Dhost_generic_regs.h195 HReg orig [N_HREG_REMAP]; member in struct:__anon13183
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm35c.java182 * @param orig {@code non-null;} the original list
185 private static RegisterSpecList explicitize(RegisterSpecList orig) { argument
186 int wordCount = wordCount(orig);
187 int sz = orig.size();
190 return orig;
197 RegisterSpec one = orig.get(i);
/external/e2fsprogs/lib/ext2fs/
H A Dbmove.c46 blk_t block, orig; local
49 block = orig = *block_nr;
59 if (block == orig) {
66 retval = io_channel_read_blk(fs->io, orig, 1, pb->buf);
81 blockcnt, orig, block);
H A Direl.h19 ext2_ino_t orig; member in struct:ext2_inode_relocate_entry
46 errcode_t (*get_by_orig)(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \
106 ((irel)->get_by_orig((irel), orig, old, ent))
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h58 /// VNInfo construtor, copies values from orig, except for the value number.
59 VNInfo(unsigned i, const VNInfo &orig) argument
60 : id(i), def(orig.def)
246 VNInfo *createValueCopy(const VNInfo *orig,
249 new (VNInfoAllocator) VNInfo((unsigned)valnos.size(), *orig);
/external/stlport/test/eh/
H A Dtest_algo.cpp88 : orig( buf ), partitionPoint(SortClass::kRange / 2) {
109 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
135 const SortBuffer& orig; member in struct:test_stable_partition
139 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf );
144 EFFECTS: Asserts that buf is a stable-sorted version of orig.
146 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf ) argument
155 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
182 : orig( bu
193 const SortBuffer& orig; member in struct:test_stable_sort_1
210 const SortBuffer& orig; member in struct:test_stable_sort_2
227 const SortBuffer& orig; member in struct:test_inplace_merge_1
245 const SortBuffer& orig; member in struct:test_inplace_merge_2
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Ddemangle.c90 Char* orig, Char* result, Int result_size )
102 if (VG_(maybe_Z_demangle)( orig, NULL,0,/*soname*/
104 orig = z_demangled;
110 demangled = ML_(cplus_demangle) ( orig, DMGL_ANSI | DMGL_PARAMS );
118 VG_(strncpy_safely)(result, orig, result_size);
89 demangle( Bool do_cxx_demangling, Bool do_z_demangling, Char* orig, Char* result, Int result_size ) argument
/external/libxml2/include/libxml/
H A Dentities.h49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
/external/mesa3d/src/glsl/
H A Dir_clone.cpp337 ir_constant *const orig = (ir_constant *) node; local
339 c->components.push_tail(orig->clone(mem_ctx, NULL));
/external/oprofile/gui/
H A Doprof_start_util.cpp179 * @param orig string to format
187 string const format(string const & orig, uint const maxlen) argument
189 string text(orig);
/external/dbus/dbus/
H A Ddbus-string-util.c146 DBusString orig; local
154 if (!_dbus_string_init (&orig))
163 if (!_dbus_string_append_len (&orig, data, len))
164 _dbus_assert_not_reached ("couldn't append orig data");
166 if (!_dbus_string_hex_encode (&orig, 0, &encoded, 0))
174 if (!_dbus_string_equal (&orig, &decoded))
179 _dbus_string_get_length (&orig),
188 _dbus_string_free (&orig);
/external/dbus/test/
H A Dbreak-loader.c302 dbus_uint32_t orig; local
327 orig = _dbus_demarshal_uint32 (mutated, byte_order, i, NULL);
332 (unsigned) (orig + delta));
342 dbus_uint32_t orig; local
385 orig = _dbus_demarshal_uint32 (mutated, byte_order, i, NULL);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaRenamer.java196 * @param orig {@code non-null;} array to duplicate
199 private static RegisterSpec[] dupArray(RegisterSpec[] orig) { argument
200 RegisterSpec[] copy = new RegisterSpec[orig.length];
202 System.arraycopy(orig, 0, copy, 0, orig.length);
/external/e2fsprogs/tests/progs/
H A Dtest_rel.c111 ent->new, ent->orig, ent->max_refs);
446 ext2_ino_t orig, old; local
456 if (parse_inode(argv[0], "original inode", argv[1], &orig))
459 retval = ext2fs_irel_get_by_orig(irel, orig, &old, &ent);
/external/skia/samplecode/
H A DSampleColorFilter.cpp27 int orig = x & 7; local
31 int diff = fake - orig;
/external/skia/src/xml/
H A DSkXMLWriter.cpp118 char orig[2]; local
119 const char* seq = escape_char(*src, orig);
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-darwin.c265 char *orig = cp; local
272 VG_(printf)("copied %p \"%s\" len %lld\n", orig, orig, (Long)(cp-orig));
276 return orig;
/external/bison/src/
H A Dsymtab.c314 symbol *orig = this->alias; local
320 if (orig->type_name != alias->type_name)
322 if (orig->type_name)
323 symbol_type_set (alias, orig->type_name, orig->type_location);
325 symbol_type_set (orig, alias->type_name, alias->type_location);
329 if (orig->destructor || alias->destructor)
331 if (orig->destructor)
332 symbol_destructor_set (alias, orig->destructor,
333 orig
[all...]
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_discovery.c323 UINT16 total, cur_handles, orig; local
331 orig = p_ccb->num_handles;
346 for (xx = orig; xx < p_ccb->num_handles; xx++)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKPKCS12KeyStore.java1604 private Hashtable orig = new Hashtable(); field in class:JDKPKCS12KeyStore.IgnoresCaseHashtable
1615 orig.remove(k);
1619 orig.put(key, value);
1624 return orig.keys();
1637 return orig.remove(k);
1650 return orig.get(k);
1655 return orig.elements();
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java829 * @param orig {@code null-ok;} the original spec
833 private static RegisterSpec filterSpec(RegisterSpec orig) { argument
834 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) {
835 return orig.withType(Type.OBJECT);
838 return orig;

Completed in 515 milliseconds

123