HomeSort by relevance Sort by last modified time
    Searched refs:ig (Results 1 - 25 of 73) sorted by null

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 156 int ig[] = {0, 1, 2, 3, 4, 5}; local
157 const unsigned sg = sizeof(ig)/sizeof(ig[0]);
158 r = std::rotate(Iter(ig), Iter(ig), Iter(ig+sg));
159 assert(base(r) == ig+sg);
160 assert(ig[0] == 0);
161 assert(ig[1] == 1);
162 assert(ig[2] == 2)
360 std::unique_ptr<int> ig[6]; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 64 int ig[] = {0, 0, 1, 1}; local
65 const unsigned sg = sizeof(ig)/sizeof(ig[0]);
66 r = std::unique(Iter(ig), Iter(ig+sg));
67 assert(base(r) == ig + 2);
68 assert(ig[0] == 0);
69 assert(ig[1] == 1);
139 Ptr ig[4]; local
140 ig[2].reset(&one)
    [all...]
unique_pred.pass.cpp 84 int ig[] = {0, 0, 1, 1}; local
85 const unsigned sg = sizeof(ig)/sizeof(ig[0]);
87 r = std::unique(Iter(ig), Iter(ig+sg), count_equal());
88 assert(base(r) == ig + 2);
89 assert(ig[0] == 0);
90 assert(ig[1] == 1);
175 Ptr ig[4]; local
176 ig[2].reset(&one)
    [all...]
unique_copy.pass.cpp 68 const int ig[] = {0, 0, 1, 1}; local
69 const unsigned sg = sizeof(ig)/sizeof(ig[0]);
71 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg));
unique_copy_pred.pass.cpp 89 const int ig[] = {0, 0, 1, 1}; local
90 const unsigned sg = sizeof(ig)/sizeof(ig[0]);
93 r = std::unique_copy(InIter(ig), InIter(ig+sg), OutIter(jg), count_equal());
  /external/emma/core/java12/com/vladium/emma/report/
IItemAttribute.java 110 final IItem ig = (IItem) g; local
112 return il.getName ().compareTo (ig.getName ());
178 final IItem ig = (IItem) g; local
183 final double nig = ig.getAggregate (m_numeratorAggregateID);
184 final double dig = ig.getAggregate (m_denominatorAggregateID);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search.pass.cpp 48 int ig[] = {1, 2, 3, 4}; local
49 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4)) == Iter1(ib+8));
search_pred.pass.cpp 89 int ig[] = {1, 2, 3, 4}; local
90 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ig), Iter2(ig+4), count_equal()) == Iter1(ib+8));
  /ndk/sources/host-tools/sed-4.2.1/
autoboot 362 ig=$parent/$dot_ig
363 insert_sorted_if_absent $ig `echo "$dst_dir"|sed 's,.*/,,'`
518 ig=$dir/$dot_ig
520 insert_sorted_if_absent $ig "$copied"
526 insert_sorted_if_absent $ig "$f"
531 insert_sorted_if_absent $ig "$f"
  /external/libvpx/libvpx/build/make/
ads2gas.pl 91 s/\bendfunc\b//ig;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
regexp-dna.js     [all...]
  /external/chromium_org/android_webview/tools/
find_copyrights.pl 151 $match =~ s/$copyright_indicator_regex//ig;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 157 int ig = floatToByte(a[5] * r + a[6] * g + a[7] * b); local
161 pinToByte(ig), pinToByte(ib));
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 174 int ig = floatToByte(a[5] * r + a[6] * g + a[7] * b); local
178 pinToByte(ig), pinToByte(ib));
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
regexp-dna.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
regexp-dna.js     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 54 magic, version, ig, nentry = struct.unpack(AS_HEADER_FORMAT, header)
  /external/chromium_org/third_party/icu/source/data/lang/
reslocal.mk 93 ig.txt\
  /external/chromium_org/third_party/icu/source/data/locales/
reslocal.mk 94 ig.txt\
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86_64-xlate.pl 207 $self->{value} =~ s/0x([0-9a-f]+)/0$1h/ig if ($masm);
273 $self->{label} =~ s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/ig;
604 $var=~s/^0x([0-9a-f]+)/0$1h/ig if ($masm);
618 map(s/0x([0-9a-f]+)/0$1h/ig,@str) if ($masm);
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 207 $self->{value} =~ s/0x([0-9a-f]+)/0$1h/ig if ($masm);
273 $self->{label} =~ s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/ig;
604 $var=~s/^0x([0-9a-f]+)/0$1h/ig if ($masm);
618 map(s/0x([0-9a-f]+)/0$1h/ig,@str) if ($masm);
    [all...]
  /external/chromium_org/third_party/libpng/
pngrtran.c 498 int ir, ig, ib; local
510 for (ig = 0; ig < num_green; ig++)
512 /* int dg = abs(ig - g); */
513 int dg = ((ig > g) ? ig - g : g - ig);
516 int index_g = index_r | (ig << PNG_DITHER_BLUE_BITS);
4247 png_uint_32 ig; local
    [all...]
  /external/libpng/
pngrtran.c 498 int ir, ig, ib; local
510 for (ig = 0; ig < num_green; ig++)
512 /* int dg = abs(ig - g); */
513 int dg = ((ig > g) ? ig - g : g - ig);
516 int index_g = index_r | (ig << PNG_DITHER_BLUE_BITS);
4247 png_uint_32 ig; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrtran.c 474 int ir, ig, ib; local
485 for (ig = 0; ig < num_green; ig++)
487 /* int dg = abs(ig - g); */
488 int dg = ((ig > g) ? ig - g : g - ig);
491 int index_g = index_r | (ig << PNG_DITHER_BLUE_BITS);
4076 png_uint_32 ig; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
locmap.c 357 ILCID_POSIX_ELEMENT_ARRAY(0x0470, ig, ig_NG)
684 ILCID_POSIX_MAP(ig), /* ig Igbo 0x70 */
    [all...]

Completed in 3702 milliseconds

1 2 3