/frameworks/rs/cpu_ref/linkloader/android/ |
librsloader.cpp | 31 static inline RSExecRef wrap(ELFObject<32> *object) { function 66 return wrap(object.take());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
WrappedCharBufferTest1.java | 25 buf = CharBuffer.wrap(new char[BUFFER_LENGTH]); 43 CharBuffer.wrap(array, -1, 0); 49 CharBuffer.wrap(array, BUFFER_LENGTH + 1, 0); 55 CharBuffer.wrap(array, 0, -1); 61 CharBuffer.wrap(array, 0, BUFFER_LENGTH + 1); 67 CharBuffer.wrap(array, Integer.MAX_VALUE, 1); 73 CharBuffer.wrap(array, 1, Integer.MAX_VALUE); 79 CharBuffer.wrap((char[])null, -1, 0);
|
WrappedByteBufferTest.java | 25 buf = ByteBuffer.wrap(new byte[BUFFER_LENGTH]); 42 ByteBuffer.wrap(array, -1, 0); 48 ByteBuffer.wrap(array, BUFFER_LENGTH + 1, 0); 54 ByteBuffer.wrap(array, 0, -1); 60 ByteBuffer.wrap(array, 0, BUFFER_LENGTH + 1); 66 ByteBuffer.wrap(array, 1, Integer.MAX_VALUE); 72 ByteBuffer.wrap(array, Integer.MAX_VALUE, 1); 78 ByteBuffer.wrap((byte[])null, 1, Integer.MAX_VALUE);
|
WrappedDoubleBufferTest.java | 23 buf = DoubleBuffer.wrap(new double[BUFFER_LENGTH]); 41 DoubleBuffer.wrap(array, -1, 0); 47 DoubleBuffer.wrap(array, 21, 0); 53 DoubleBuffer.wrap(array, 0, -1); 59 DoubleBuffer.wrap(array, 0, 21); 65 DoubleBuffer.wrap(array, Integer.MAX_VALUE, 1); 71 DoubleBuffer.wrap(array, 1, Integer.MAX_VALUE); 77 DoubleBuffer.wrap((double[])null, -1, 0); 82 DoubleBuffer buf = DoubleBuffer.wrap(array, 2, 16);
|
WrappedFloatBufferTest.java | 23 buf = FloatBuffer.wrap(new float[BUFFER_LENGTH]); 41 FloatBuffer.wrap(array, -1, 0); 47 FloatBuffer.wrap(array, 21, 0); 53 FloatBuffer.wrap(array, 0, -1); 59 FloatBuffer.wrap(array, 0, 21); 65 FloatBuffer.wrap(array, Integer.MAX_VALUE, 1); 71 FloatBuffer.wrap(array, 1, Integer.MAX_VALUE); 77 FloatBuffer.wrap((float[])null, -1, 0); 82 FloatBuffer buf = FloatBuffer.wrap(array, 2, 16);
|
WrappedIntBufferTest.java | 23 buf = IntBuffer.wrap(new int[BUFFER_LENGTH]); 41 IntBuffer.wrap(array, -1, 0); 47 IntBuffer.wrap(array, 21, 0); 53 IntBuffer.wrap(array, 0, -1); 59 IntBuffer.wrap(array, 0, 21); 65 IntBuffer.wrap(array, Integer.MAX_VALUE, 1); 71 IntBuffer.wrap(array, 1, Integer.MAX_VALUE); 77 IntBuffer.wrap((int[])null, -1, 0); 82 IntBuffer buf = IntBuffer.wrap(array, 2, 16);
|
WrappedLongBufferTest.java | 23 buf = LongBuffer.wrap(new long[BUFFER_LENGTH]); 41 LongBuffer.wrap(array, -1, 0); 47 LongBuffer.wrap(array, 21, 0); 53 LongBuffer.wrap(array, 0, -1); 59 LongBuffer.wrap(array, 0, 21); 65 LongBuffer.wrap(array, Integer.MAX_VALUE, 1); 71 LongBuffer.wrap(array, 1, Integer.MAX_VALUE); 77 LongBuffer.wrap((long[])null, -1, 0); 82 LongBuffer buf = LongBuffer.wrap(array, 2, 16);
|
WrappedShortBufferTest.java | 23 buf = ShortBuffer.wrap(new short[BUFFER_LENGTH]); 41 ShortBuffer.wrap(array, -1, 0); 47 ShortBuffer.wrap(array, 21, 0); 53 ShortBuffer.wrap(array, 0, -1); 59 ShortBuffer.wrap(array, 0, 21); 65 ShortBuffer.wrap(array, Integer.MAX_VALUE, 1); 71 ShortBuffer.wrap(array, 1, Integer.MAX_VALUE); 77 ShortBuffer.wrap((short[])null, -1, 0); 82 ShortBuffer buf = ShortBuffer.wrap(array, 2, 16);
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestTrustManager.java | 39 public static TrustManager[] wrap(TrustManager[] trustManagers) { method in class:TestTrustManager 42 result[i] = wrap(result[i]); 47 public static TrustManager wrap(TrustManager trustManager) { method in class:TestTrustManager
|
/development/samples/Vault/src/com/example/android/vault/ |
SecretKeyWrapper.java | 91 * Wrap a {@link SecretKey} using the public key assigned to this wrapper. 98 public byte[] wrap(SecretKey key) throws GeneralSecurityException { method in class:SecretKeyWrapper 100 return mCipher.wrap(key); 108 * {@link #wrap(SecretKey)}.
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
debug.rb | 13 def self.wrap( adaptor, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TreeAdaptor 113 def self.wrap( stream, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TreeNodeStream
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
RFC3394WrapEngine.java | 14 * an implementation of the AES Key Wrapper from the NIST Key Wrap 18 * and <a href="http://csrc.nist.gov/encryption/kms/key-wrap.pdf">http://csrc.nist.gov/encryption/kms/key-wrap.pdf</a>. 67 public byte[] wrap( method in class:RFC3394WrapEngine 81 throw new DataLengthException("wrap data must be a multiple of 8 bytes");
|
/external/chromium_org/chrome/test/chromedriver/js/ |
call_function.js | 141 * @param {*} value The value to wrap. 144 function wrap(value) { function 157 obj[prop] = wrap(value[prop]); 222 var returnValue = wrap(func.apply(null, unwrap(args, cache)));
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestInterfacePython2.cpp | 120 v8::Handle<v8::Object> wrap(TestInterfacePython2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore 124 return wrap(toInterface1(impl), creationContext, isolate); 126 return wrap(toInterface2(impl), creationContext, isolate);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8TypedArrayCustom.h | 65 static v8::Handle<v8::Object> wrap(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in class:WebCore::V8TypedArray 79 return wrap(impl, creationContext, isolate); 91 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate()); 105 v8::Handle<v8::Value> wrapper = wrap(impl, info.Holder(), info.GetIsolate()); 118 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate());
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_context.h | 34 unsigned wrap; member in struct:nouveau_context::__anon12653 59 * work, and we need the wrap index anyway for extreme situations. 64 nv->scratch.wrap = nv->scratch.id;
|
/external/guava/guava/src/com/google/common/base/ |
Equivalence.java | 147 * {@code wrap(this, a).equals(wrap(this, b))} if and only if {@code this.equivalent(a, b)}. 151 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) { method in class:Equivalence 163 * equiv.wrap("a").equals(equiv.wrap("b")) // true 164 * equiv.wrap("a").equals(equiv.wrap("hello")) // false 170 * equiv.wrap(obj).equals(obj) // always false 226 return equivalence + ".wrap(" + reference + ")";
|
/external/guava/guava/src/com/google/common/collect/ |
EnumBiMap.java | 74 super(WellBehavedMap.wrap(new EnumMap<K, V>(keyType)), 75 WellBehavedMap.wrap(new EnumMap<V, K>(valueType))); 129 WellBehavedMap.wrap(new EnumMap<K, V>(keyType)), 130 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
|
EnumHashBiMap.java | 73 super(WellBehavedMap.wrap( 112 setDelegates(WellBehavedMap.wrap(new EnumMap<K, V>(keyType)),
|
EnumMultiset.java | 62 super(WellBehavedMap.wrap(new EnumMap<E, Count>(type))); 84 setBackingMap(WellBehavedMap.wrap(new EnumMap<E, Count>(type)));
|
/external/guava/guava/src/com/google/common/primitives/ |
Primitives.java | 103 * wrap(int.class) == Integer.class 104 * wrap(Integer.class) == Integer.class 105 * wrap(String.class) == String.class 108 public static <T> Class<T> wrap(Class<T> type) { method in class:Primitives
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/ |
PerturbFilter.java | 76 float c00 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x - px, workSize)];
77 float c01 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x + px, workSize)];
78 float c10 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x - px, workSize)];
79 float c11 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x + px, workSize)];
86 return FloatBuffer.wrap(retval);
89 private int wrap(int v, int size) { method in class:PerturbFilter [all...] |
/external/llvm/include/llvm/Support/ |
CodeGen.h | 72 inline LLVMCodeModel wrap(CodeModel::Model Model) { function in namespace:llvm
|
/external/llvm/lib/Target/ |
Target.cpp | 31 inline LLVMTargetDataRef wrap(const DataLayout *P) { function 39 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function 54 return wrap(new DataLayout(StringRep)); 84 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext())); 88 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext(), AS));
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_context.h | 34 unsigned wrap; member in struct:nouveau_context::__anon23120 59 * work, and we need the wrap index anyway for extreme situations. 64 nv->scratch.wrap = nv->scratch.id;
|