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

12

/external/bluetooth/glib/tests/gobject/
H A Dgvalue-test.c40 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,
[all...]
/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/e2fsprogs/lib/ext2fs/
H A Dbmove.c42 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);
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/skia/xcode/Simple/
H A DSimpleApp.cpp60 void SimpleWindow::afterChildren(SkCanvas* orig) { argument
/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...]
H A Dtest_insert.h186 // not found in input range, probably re-ordered from the orig
330 test_insert_one( const C& orig, int pos =-1 ) argument
331 : original( orig ), fPos( random_number( orig.size() ))
367 test_insert_n( const C& orig, size_t insCnt, int pos =-1 ) argument
368 : original( orig ), fPos( random_number( orig.size() )), fInsCnt(insCnt)
405 test_insert_value( const C& orig )
406 : original( orig )
429 test_insert_noresize( const C& orig )
499 test_insert_range( const C& orig, Iter first, Iter last, int pos=-1 ) argument
535 insert_range_tester( const C& orig, const Iter& first, const Iter& last ) argument
541 insert_range_at_begin_tester( const C& orig, const Iter& first, const Iter& last ) argument
547 insert_range_at_end_tester( const C& orig, const Iter& first, const Iter& last ) argument
[all...]
/external/dbus/dbus/
H A Ddbus-string-util.c144 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/
H A Dentities.h49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
/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/gm/
H A Dgmmain.cpp170 SkBitmap orig; local
171 bool success = SkImageDecoder::DecodeFile(path.c_str(), &orig,
175 compare(bitmap, orig, name);
/external/skia/src/xml/
H A DSkXMLWriter.cpp126 char orig[2]; local
127 const char* seq = escape_char(*src, orig);
/external/webkit/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp77 const SkBitmap& orig = device->accessBitmap(false); local
80 orig.copyTo(&copy, orig.config());
/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/kernel-headers/original/linux/mtd/
H A Dmap.h322 static inline map_word map_word_load_partial(struct map_info *map, map_word orig, const unsigned char *buf, int start, int len) argument
327 char *dest = (char *)&orig;
337 orig.x[0] &= ~(0xff << bitpos);
338 orig.x[0] |= buf[i-start] << bitpos;
341 return orig;
/external/skia/src/animator/
H A DSkDrawGroup.cpp276 bool SkGroup::resolveIDs(SkAnimateMaker& maker, SkDisplayable* orig, SkApply* apply) { argument
277 SkGroup* original = (SkGroup*) orig;
282 SkDrawable** origChild = ((SkGroup*) orig)->fChildren.begin();
/external/icu4c/tools/gencase/
H A Dstore.c598 * The initial function call has prev2<0, prev<0, and c==orig
602 * The second-level function call has prev2<0, prev==orig, and c is
604 * The function checks if any of c's case mappings go back to orig
607 * orig->c
609 * orig<->c
611 * The third-level function call has prev2==orig, prev>=0, and c is
614 * The function checks if any of c's case mappings go back to orig
617 * orig->prev->c or orig->prev<->c
619 * orig
632 addClosure(UChar32 orig, UChar32 prev2, UChar32 prev, UChar32 c, uint32_t value) argument
[all...]
/external/skia/include/views/
H A DSkView.h309 virtual void afterChildren(SkCanvas* orig) {} argument
/external/skia/src/core/
H A DSkBlitter_RGB16.cpp728 const uint16_t* orig = dst; local
731 memcpy(dst, orig, width << 1);
H A DSkMath.cpp233 SkFixed orig = a; local
251 orig, orig/65536.,
/external/tremolo/Tremolo/
H A Dframing.c1163 void ogg_page_dup(ogg_page *dup,ogg_page *orig){ argument
1164 dup->header_len=orig->header_len;
1165 dup->body_len=orig->body_len;
1166 dup->header=ogg_buffer_dup(orig->header);
1167 dup->body=ogg_buffer_dup(orig->body);
/external/skia/include/core/
H A DSkPaint.h445 The returned rect will either be orig or storage, thus the caller
447 use the retured value. It is legal for orig and storage to be the same
460 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const { argument
461 return this->getStyle() == kFill_Style ? orig :
462 this->computeStrokeFastBounds(orig, storage);
847 const SkRect& computeStrokeFastBounds(const SkRect& orig,
/external/svox/pico/lib/
H A Dpicospho.c710 * Given the original bound strength 'orig' and the desired target strength 'target' (suggested by fst),
713 * @param orig original bound strength
717 static picoos_uint8 fstModifiedBoundStrength(picoos_uint8 orig, picoos_uint8 target) argument
719 switch (orig) {
732 return orig;
742 * @param orig original bound strength
747 static picoos_uint8 breakModifiedBoundStrength(picoos_uint8 orig, picoos_uint16 time, picoos_bool wasPrimary) argument
751 switch (orig) {
767 return orig;
/external/wpa_supplicant/
H A Dradius.c584 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/
H A Dradius.c588 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 359 milliseconds

12