Home
last modified time | relevance | path

Searched refs:orig (Results 1 – 25 of 70) sorted by relevance

123

/external/bison/src/
Dsymtab.c314 symbol *orig = this->alias; in symbol_check_alias_consistency() local
320 if (orig->type_name != alias->type_name) in symbol_check_alias_consistency()
322 if (orig->type_name) in symbol_check_alias_consistency()
323 symbol_type_set (alias, orig->type_name, orig->type_location); in symbol_check_alias_consistency()
325 symbol_type_set (orig, alias->type_name, alias->type_location); in symbol_check_alias_consistency()
329 if (orig->destructor || alias->destructor) in symbol_check_alias_consistency()
331 if (orig->destructor) in symbol_check_alias_consistency()
332 symbol_destructor_set (alias, orig->destructor, in symbol_check_alias_consistency()
333 orig->destructor_location); in symbol_check_alias_consistency()
335 symbol_destructor_set (orig, alias->destructor, in symbol_check_alias_consistency()
[all …]
/external/dropbear/libtomcrypt/src/encauth/gcm/
Dgcm_memory.c46 void *orig; in gcm_memory() local
69 orig = gcm = XMALLOC(sizeof(*gcm)); in gcm_memory()
71 orig = gcm = XMALLOC(sizeof(*gcm) + 16); in gcm_memory()
101 XFREE(orig); in gcm_memory()
/external/e2fsprogs/lib/ext2fs/
Direl_ma.c30 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
156 ent->orig = old;
158 ent->orig = ma->entries[(unsigned) old].orig;
175 ma->orig_map[(unsigned) ent->orig] = old;
193 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
200 if (orig > ma->max_inode)
202 ino = ma->orig_map[(unsigned) orig];
324 ma->orig_map[ma->entries[new].orig] = new;
341 ma->orig_map[ma->entries[(unsigned) old].orig] = 0;
Dbmove.c42 blk_t block, orig; in process_block() local
45 block = orig = *block_nr; in process_block()
55 if (block == orig) { in process_block()
62 retval = io_channel_read_blk(fs->io, orig, 1, pb->buf); in process_block()
77 blockcnt, orig, block); in process_block()
Direl.h19 ext2_ino_t orig; member
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) \ argument
106 ((irel)->get_by_orig((irel), orig, old, ent))
/external/webkit/JavaScriptCore/tests/mozilla/js1_6/
Dshell.js361 this.orig = {};
362 this.orig.strict = this.strict = false;
363 this.orig.werror = this.werror = false;
409 this.orig.strict = this.strict =
418 this.orig.werror = this.werror =
475 this.setOption('strict', this.orig.strict);
476 this.setOption('werror', this.orig.werror);
/external/libxml2/
Dentities.c122 if ((entity->orig != NULL) && (!xmlDictOwns(dict, entity->orig))) in xmlFreeEntity()
123 xmlFree((char *) entity->orig); in xmlFreeEntity()
135 if (entity->orig != NULL) in xmlFreeEntity()
136 xmlFree((char *) entity->orig); in xmlFreeEntity()
217 ret->orig = NULL; in xmlAddEntity()
791 if (ent->orig != NULL) in xmlCopyEntity()
792 cur->orig = xmlStrdup(ent->orig); in xmlCopyEntity()
870 if (ent->orig != NULL) in xmlDumpEntityDecl()
871 xmlBufferWriteQuotedString(buf, ent->orig); in xmlDumpEntityDecl()
904 if (ent->orig != NULL) in xmlDumpEntityDecl()
[all …]
/external/grub/netboot/
Dsis900.txt21 cp Makefile Makefile.orig
22 cp config.c config.c.orig
23 cp pci.h pci.h.orig
24 cp NIC NIC.orig
25 cp cards.h cards.h.orig
/external/icu4c/tools/gencase/
Dstore.c624 addClosure(UChar32 orig, UChar32 prev2, UChar32 prev, UChar32 c, uint32_t value) { in addClosure() argument
628 if(c!=orig) { in addClosure()
644 UBool mapsToOrig=(UBool)(c==orig); in addClosure()
669 if(next==orig) { in addClosure()
677 someMappingsAdded|=addClosure(orig, prev, c, next, 0); in addClosure()
682 addClosureMapping(c, orig); in addClosure()
695 if(prev2<0 && next!=orig && next!=prev) { in addClosure()
696 someMappingsAdded|=addClosure(orig, prev, c, next, 0); in addClosure()
699 if(c!=orig && next!=orig) { in addClosure()
701 addClosureMapping(c, orig); in addClosure()
/external/dosfstools/debian/patches/
D14-bootcode.dpatch8 diff -Naurp dosfstools.orig/mkdosfs/ChangeLog dosfstools/mkdosfs/ChangeLog
9 --- dosfstools.orig/mkdosfs/ChangeLog 2008-06-27 05:37:31.000000000 +0000
26 diff -Naurp dosfstools.orig/mkdosfs/mkdosfs.8 dosfstools/mkdosfs/mkdosfs.8
27 --- dosfstools.orig/mkdosfs/mkdosfs.8 2008-06-27 06:34:35.000000000 +0000
59 diff -Naurp dosfstools.orig/mkdosfs/mkdosfs.c dosfstools/mkdosfs/mkdosfs.c
60 --- dosfstools.orig/mkdosfs/mkdosfs.c 2008-06-27 06:34:35.000000000 +0000
/external/dbus/dbus/
Ddbus-string-util.c144 DBusString orig; in test_hex_roundtrip() local
152 if (!_dbus_string_init (&orig)) in test_hex_roundtrip()
161 if (!_dbus_string_append_len (&orig, data, len)) in test_hex_roundtrip()
164 if (!_dbus_string_hex_encode (&orig, 0, &encoded, 0)) in test_hex_roundtrip()
172 if (!_dbus_string_equal (&orig, &decoded)) in test_hex_roundtrip()
177 _dbus_string_get_length (&orig), in test_hex_roundtrip()
186 _dbus_string_free (&orig); in test_hex_roundtrip()
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
D15.11.7.6-002.js59 var orig = F.prototype;
61 return F.prototype === orig;
D15.11.7.6-003.js59 var orig = F.prototype;
61 return F.prototype === orig;
/external/e2fsprogs/intl/
DMakefile.in300 sed -f ref-add.sed $$orig > $$temp; \
306 sed -f ref-add.sed $$orig > $$temp; \
317 sed -f ref-add.sed $$orig > $$temp; \
/external/webkit/SunSpider/tests/
D3d-raytrace.js160 Triangle.prototype.intersect = function(orig, dir, near, far) { argument
164 var t = (this.nd - orig[this.axis] - this.nu * orig[u] - this.nv * orig[v]) / d;
167 var Pu = orig[u] + t * dir[u] - this.eu;
168 var Pv = orig[v] + t * dir[v] - this.ev;
/external/webkit/WebCore/platform/graphics/android/
DImageBufferAndroid.cpp77 const SkBitmap& orig = device->accessBitmap(false); in image() local
80 orig.copyTo(&copy, orig.config()); in image()
/external/ipsec-tools/src/racoon/
Dremoteconf.c334 dupetypes(orig) in dupetypes() argument
335 struct etypes *orig; in dupetypes()
339 if (!orig)
346 new->type = orig->type;
349 if (orig->next)
350 new->next=dupetypes(orig->next);
/external/apache-http/src/org/apache/http/impl/client/
DDefaultRequestDirector.java289 HttpRequest orig = request; in execute() local
290 RequestWrapper origWrapper = wrapRequest(orig); in execute()
320 if (orig instanceof AbortableHttpRequest) { in execute()
321 ((AbortableHttpRequest) orig).setConnectionRequest(connRequest); in execute()
342 if (orig instanceof AbortableHttpRequest) { in execute()
343 ((AbortableHttpRequest) orig).setReleaseTrigger(managedConn); in execute()
901 HttpRequest orig = request.getOriginal(); in handleResponse() local
902 redirect.setHeaders(orig.getAllHeaders()); in handleResponse()
/external/strace/
Darm-eabi.patch8 --- strace.orig/process.c 2006-03-30 17:36:14.000000000 -0500
29 --- strace.orig/syscall.c 2006-03-30 17:36:14.000000000 -0500
/external/netcat/
Dstupidh431 static char orig[16];
432 strcpy (orig, "ABCDEFGHIJK");
433 yow.bletch = orig;
/external/libxml2/include/libxml/
Dcatalog.h80 const xmlChar *orig,
134 const xmlChar *orig,
/external/skia/src/animator/
DSkDrawGroup.cpp276 bool SkGroup::resolveIDs(SkAnimateMaker& maker, SkDisplayable* orig, SkApply* apply) { in resolveIDs() argument
277 SkGroup* original = (SkGroup*) orig; in resolveIDs()
282 SkDrawable** origChild = ((SkGroup*) orig)->fChildren.begin(); in resolveIDs()
/external/e2fsprogs/tests/progs/
Dtest_rel.c111 ent->new, ent->orig, ent->max_refs); in display_irel_entry()
446 ext2_ino_t orig, old; in do_irel_get_by_orig() local
456 if (parse_inode(argv[0], "original inode", argv[1], &orig)) in do_irel_get_by_orig()
459 retval = ext2fs_irel_get_by_orig(irel, orig, &old, &ent); in do_irel_get_by_orig()
/external/opencore/protocols/sdp/common/include/
Dsession_info.h778 inline void getOriginator(originatorInfo* orig) in getOriginator() argument
780 orig->originatorUsername = origInfo.originatorUsername; in getOriginator()
781 orig->originatorSessionID = origInfo.originatorSessionID; in getOriginator()
782 orig->originatorVersion = origInfo.originatorVersion; in getOriginator()
783 orig->originatorNetworkType = origInfo.originatorNetworkType; in getOriginator()
784 orig->originatorAddressType = origInfo.originatorAddressType; in getOriginator()
785 orig->originatorAddress = origInfo.originatorAddress; in getOriginator()
/external/e2fsprogs/lib/ext2fs/tdb/patches/
Dstatic-functions3 --- tdbsa.orig/tdb.c

123