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

1 2

  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_memory.c 46 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);
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsActivityTest.java 47 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_good); local
49 orig.writeToParcel(p, 0);
73 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_bad_1); local
75 orig.writeToParcel(p, 0);
99 RemoteViews orig = new RemoteViews(PACKAGE_NAME, R.layout.remote_view_test_bad_2); local
101 orig.writeToParcel(p, 0);
  /external/bluetooth/glib/tests/gobject/
gvalue-test.c 40 GValue orig = { 0, }; local
46 g_value_init (&orig, type);
47 g_value_set_enum (&orig, 1);
51 g_value_transform (&orig, &xform);
56 g_value_transform (&orig, &xform);
61 g_value_transform (&orig, &xform);
66 g_value_transform (&orig, &xform);
71 g_value_transform (&orig, &xform);
76 g_value_transform (&orig, &xform);
81 g_value_transform (&orig, &xform);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bmove.c 42 blk_t block, orig; local
45 block = orig = *block_nr;
55 if (block == orig) {
62 retval = io_channel_read_blk(fs->io, orig, 1, pb->buf);
77 blockcnt, orig, block);
irel.h 19 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))
  /build/tools/
merge-event-log-tags.py 91 orig = by_tagname[t.tagname] variable
94 if orig.tagnum is None:
95 orig.tagnum = t.tagnum
97 t.tagnum = orig.tagnum
99 if (t.tagnum == orig.tagnum and
100 t.description == orig.description):
105 (t.tagname, t.tagnum, orig.filename, orig.linenum),
110 (t.tagname, orig.tagnum, orig.filename, orig.linenum)
115 orig = by_tagnum[t.tagnum] variable
    [all...]
  /external/stlport/test/eh/
test_algo.cpp 88 : 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 )
155 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
182 : orig( buf )
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...]
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 247 TypeBearer orig = stack[idx]; local
249 if ((orig == null) ||
250 (orig.getType().getCategory() != type.getType().getCategory())) {
252 stackElementString(orig) + " -> " +
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPath.java 96 List orig = new ArrayList(certs); local
125 return orig;
147 return orig;
  /external/dbus/dbus/
dbus-string-util.c 144 DBusString orig; local
152 if (!_dbus_string_init (&orig))
161 if (!_dbus_string_append_len (&orig, data, len))
162 _dbus_assert_not_reached ("couldn't append orig data");
164 if (!_dbus_string_hex_encode (&orig, 0, &encoded, 0))
172 if (!_dbus_string_equal (&orig, &decoded))
177 _dbus_string_get_length (&orig),
186 _dbus_string_free (&orig);
  /external/libxml2/include/libxml/
entities.h 49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
  /external/skia/gm/
gmmain.cpp 170 SkBitmap orig; local
171 bool success = SkImageDecoder::DecodeFile(path.c_str(), &orig,
175 compare(bitmap, orig, name);
  /external/webkit/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 77 const SkBitmap& orig = device->accessBitmap(false); local
80 orig.copyTo(&copy, orig.config());
  /external/bison/src/
symtab.c 314 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->destructor_location)
    [all...]
  /external/e2fsprogs/tests/progs/
test_rel.c 111 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/src/xml/
SkXMLWriter.cpp 126 char orig[2]; local
127 const char* seq = escape_char(*src, orig);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 289 HttpRequest orig = request; local
290 RequestWrapper origWrapper = wrapRequest(orig);
308 // request is still available in 'orig'.
320 if (orig instanceof AbortableHttpRequest) {
321 ((AbortableHttpRequest) orig).setConnectionRequest(connRequest);
342 if (orig instanceof AbortableHttpRequest) {
343 ((AbortableHttpRequest) orig).setReleaseTrigger(managedConn);
901 HttpRequest orig = request.getOriginal(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
KeyboardSwitcher.java 291 Resources orig = mInputMethodService.getResources(); local
292 Configuration conf = orig.getConfiguration();
295 orig.updateConfiguration(conf, null);
307 orig.updateConfiguration(conf, null);
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 520 TypeBearer orig = type; local
523 if (orig instanceof Type) {
524 newType = (Type) orig;
526 newType = orig.getType();
533 if (newType == orig) {
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 240 char[] orig = new char[oldStart - x]; local
241 TextUtils.getChars(content, x, oldStart, orig, 0);
243 content.setSpan(new Replaced(orig), x, oldStart,
394 char[] orig = new char[len]; local
395 original.getChars(0, len, orig, 0);
397 content.setSpan(new Replaced(orig), start, end,
  /dalvik/vm/interp/
Interp.c 441 u1 orig = 0; local
444 if (!dvmBreakpointSetOriginalOpCode(pSet, addr, &orig)) {
445 orig = *(u1*)addr;
446 if (orig == OP_BREAKPOINT) {
453 return orig;
    [all...]
  /external/skia/src/core/
SkBlitter_RGB16.cpp 728 const uint16_t* orig = dst; local
731 memcpy(dst, orig, width << 1);
    [all...]
SkMath.cpp 233 SkFixed orig = a; local
251 orig, orig/65536.,
  /external/wpa_supplicant/
radius.c 584 u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN]; local
605 os_memcpy(orig, attr + 1, MD5_MAC_LEN);
614 os_memcpy(attr + 1, orig, MD5_MAC_LEN);
620 if (os_memcmp(orig, auth, MD5_MAC_LEN) != 0) {
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.c 588 u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN]; local
610 os_memcpy(orig, attr + 1, MD5_MAC_LEN);
619 os_memcpy(attr + 1, orig, MD5_MAC_LEN);
625 if (os_memcmp(orig, auth, MD5_MAC_LEN) != 0) {

Completed in 634 milliseconds

1 2