HomeSort by relevance Sort by last modified time
    Searched full:order (Results 201 - 225 of 11697) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/
poly_hermite.tcc 56 * of order n: \f$ H_n(x) \f$ by recursion on n.
63 * @param __n The order of the Hermite polynomial.
65 * @return The value of the Hermite polynomial of order n
98 * of order n: \f$ H_n(x) \f$.
105 * @param __n The order of the Hermite polynomial.
107 * @return The value of the Hermite polynomial of order n
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 44 find_by_order(size_type order)
58 if (order == o)
60 else if (order < o)
64 order -= o + 1;
76 find_by_order(size_type order) const
78 return (const_cast<PB_DS_CLASS_C_DEC* >(this)->find_by_order(order));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/
poly_hermite.tcc 56 * of order n: \f$ H_n(x) \f$ by recursion on n.
63 * @param __n The order of the Hermite polynomial.
65 * @return The value of the Hermite polynomial of order n
98 * of order n: \f$ H_n(x) \f$.
105 * @param __n The order of the Hermite polynomial.
107 * @return The value of the Hermite polynomial of order n
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 44 find_by_order(size_type order)
58 if (order == o)
60 else if (order < o)
64 order -= o + 1;
76 find_by_order(size_type order) const
78 return (const_cast<PB_DS_CLASS_C_DEC* >(this)->find_by_order(order));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
poly_hermite.tcc 56 * of order n: \f$ H_n(x) \f$ by recursion on n.
63 * @param __n The order of the Hermite polynomial.
65 * @return The value of the Hermite polynomial of order n
98 * of order n: \f$ H_n(x) \f$.
105 * @param __n The order of the Hermite polynomial.
107 * @return The value of the Hermite polynomial of order n
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 44 find_by_order(size_type order)
54 if (order == o)
56 else if (order < o)
60 order -= o + 1;
71 find_by_order(size_type order) const
72 { return const_cast<PB_DS_CLASS_C_DEC*>(this)->find_by_order(order); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
poly_hermite.tcc 56 * of order n: \f$ H_n(x) \f$ by recursion on n.
63 * @param __n The order of the Hermite polynomial.
65 * @return The value of the Hermite polynomial of order n
98 * of order n: \f$ H_n(x) \f$.
105 * @param __n The order of the Hermite polynomial.
107 * @return The value of the Hermite polynomial of order n
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECParameterSpec.java 79 * return the order N of G
80 * @return the order
88 * return the cofactor H to the order of G.
  /external/chromium/chrome/browser/history/
starred_url_database.h 54 // . Makes sure the visual order of all nodes is correct.
72 // WARNING: Does not update the visual order.
79 // Adjusts the visual order of all children of parent_folder_id with a
81 // AdjustStarredVisualOrder(10, 0, 1) increments the visual order all children
82 // of folder 10 with a visual order >= 0 by 1.
90 // WARNING: Does not update the visual order.
102 // WARNING: Does not update the visual order.
144 // Sets the visual order of all of node's children match the order in |node|.
145 // If the order differs, the database is updated. Returns false if the orde
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gconf_titlebar_listener.h 21 // On GNOME desktops, subscribes to the gconf key which controlls button order.
31 // Sets the current titlebar button order. On GNOME desktops, also subscribes
35 // Removes |titlebar| from the list of objects observing button order change
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListToArrayTester.java 39 assertArrayEquals("toArray() order should match list",
46 assertArrayEquals("toArray(tooSmall) order should match list",
52 assertArrayEquals("toArray(largeEnough) order should match list",
  /external/kernel-headers/original/linux/
mempool.h 69 * allocates pages of the order specified by pool_data
73 static inline mempool_t *mempool_create_page_pool(int min_nr, int order)
76 (void *)(long)order);
  /external/mockito/src/org/mockito/internal/verification/checkers/
MissingInvocationInOrderChecker.java 44 * rather that not invoked in order. Issue related to
45 * http://code.google.com/p/mockito/issues/detail?id=27. If the previous order
46 * is missing, then this method checks if the arguments are different or if the order
  /external/skia/include/gpu/
GrColor.h 17 * GrColor is 4 bytes for R, G, B, A, in a compile-time specific order. The
25 // ES doesn't allow BGRA vertex attrib order so if they were not in this order
  /libcore/luni/src/main/java/java/nio/
MemoryBlock.java 211 public final void pokeShort(int offset, short value, ByteOrder order) {
212 Memory.pokeShort(address + offset, value, order.needsSwap);
215 public final short peekShort(int offset, ByteOrder order) {
216 return Memory.peekShort(address + offset, order.needsSwap);
219 public final void pokeInt(int offset, int value, ByteOrder order) {
220 Memory.pokeInt(address + offset, value, order.needsSwap);
223 public final int peekInt(int offset, ByteOrder order) {
224 return Memory.peekInt(address + offset, order.needsSwap);
227 public final void pokeLong(int offset, long value, ByteOrder order) {
228 Memory.pokeLong(address + offset, value, order.needsSwap)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Memory.java 45 public static int peekInt(byte[] src, int offset, ByteOrder order) {
46 if (order == ByteOrder.BIG_ENDIAN) {
59 public static long peekLong(byte[] src, int offset, ByteOrder order) {
60 if (order == ByteOrder.BIG_ENDIAN) {
83 public static short peekShort(byte[] src, int offset, ByteOrder order) {
84 if (order == ByteOrder.BIG_ENDIAN) {
91 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) {
92 if (order == ByteOrder.BIG_ENDIAN) {
105 public static void pokeLong(byte[] dst, int offset, long value, ByteOrder order) {
106 if (order == ByteOrder.BIG_ENDIAN)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/
resource.h 8 * a different rlimit ID order in the 5-9 range and want
9 * to keep that order for binary compatibility. The reasons
11 * arches. If an arch has such special order for some rlimits
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
resource.h 8 * a different rlimit ID order in the 5-9 range and want
9 * to keep that order for binary compatibility. The reasons
11 * arches. If an arch has such special order for some rlimits
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
resource.h 8 * a different rlimit ID order in the 5-9 range and want
9 * to keep that order for binary compatibility. The reasons
11 * arches. If an arch has such special order for some rlimits
  /development/host/windows/usb/winusb/
BUILDME.TXT 1 In order to build AdbWinUsbApi.dll you will need to install Windows Driver Kit,
  /development/ndk/platforms/android-3/include/linux/
patchkey.h 27 #error "could not determine byte order"
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Cube.java 70 // must have their byte order set to native order
73 vbb.order(ByteOrder.nativeOrder());
79 cbb.order(ByteOrder.nativeOrder());
  /development/samples/training/ads-and-ux/
ReadMe.txt 4 The application has the following external dependencies. In order to build, be sure to obtain these
  /external/chromium/base/allocator/
unittest_utils.cc 5 // The unittests need a this in order to link up without pulling in tons
  /external/chromium/base/test/
test_switches.h 10 // All switches in alphabetical order. The switches should be documented

Completed in 7708 milliseconds

1 2 3 4 5 6 7 891011>>