HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 651 - 675 of 4096) sorted by null

<<21222324252627282930>>

  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestCustomAnim.java 100 indices.array()[i+0] = 0;
101 indices.array()[i+1] = 0;
102 indices.array()[i+2] = 0;
103 indices.array()[i+3] = 0;
106 weights.array()[i+0] = 1;
107 weights.array()[i+1] = 0;
108 weights.array()[i+2] = 0;
109 weights.array()[i+3] = 0;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 20 | Call of string * expr array
29 | Var of (string * expr option) array * expr
35 | Prototype of string * string array
36 | BinOpPrototype of string * string array * int
  /external/mesa3d/src/mesa/swrast/
s_alpha.c 87 * Perform the alpha test for an array of pixels.
96 GLubyte *mask = span->array->mask;
112 /* Use array's alpha values */
113 if (span->array->ChanType == GL_UNSIGNED_BYTE) {
114 GLubyte (*rgba)[4] = span->array->rgba8;
119 else if (span->array->ChanType == GL_UNSIGNED_SHORT) {
120 GLushort (*rgba)[4] = span->array->rgba16;
126 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
134 if (span->array->ChanType == GL_UNSIGNED_BYTE) {
141 else if (span->array->ChanType == GL_UNSIGNED_SHORT)
    [all...]
s_logic.c 38 * Depending on bytes per pixel, the mask array elements correspond to
201 if (span->array->ChanType == GL_UNSIGNED_BYTE) {
204 (GLuint *) span->array->rgba8,
205 (const GLuint *) rbPixels, span->array->mask);
207 else if (span->array->ChanType == GL_UNSIGNED_SHORT) {
210 (GLuint *) span->array->rgba16,
211 (const GLuint *) rbPixels, span->array->mask);
215 (GLuint *) span->array->attribs[FRAG_ATTRIB_COL0],
216 (const GLuint *) rbPixels, span->array->mask);
  /external/skia/include/effects/
SkColorMatrixFilter.h 17 SkColorMatrixFilter(const SkScalar array[20]);
51 void initState(const SkScalar array[20]);
  /external/stlport/test/unit/
multiset_test.cpp 63 int array [] = { 3, 6, 1, 2, 3, 2, 6, 7, 9 }; local
66 mset s(array, array + 9);
101 int array [] = { 3, 6, 1, 9 }; local
108 fn_mset s1(array+0, array + 4 , f );
118 fn_mset s2(array, array + 4, g);
  /external/v8/src/ia32/
codegen-ia32.h 63 static Operand FixedArrayElementOperand(Register array,
67 return FieldOperand(array, index_as_smi, times_half_pointer_size, offset);
  /external/webrtc/src/system_wrappers/interface/
data_log.h 92 // Inserts an array of values into a table with name table_name at the
102 const T* array,
110 new MultiValueContainer<T>(array, length));
  /frameworks/base/core/java/android/net/
NetworkUtils.java 186 byte[] array = address.getAddress();
188 if (prefixLength < 0 || prefixLength > array.length * 8) {
196 if (offset < array.length) array[offset] = (byte)(array[offset] & mask);
200 for (; offset < array.length; offset++) {
201 array[offset] = 0;
206 netPart = InetAddress.getByAddress(array);
244 * Create a string array of host addresses from a collection of InetAddresses
246 * @return an array of Strings containing their host addresse
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
array.pass.cpp 12 // array
37 typedef char array[3]; typedef
43 test_array<array>();
  /ndk/tests/device/test-gnustl-full/unit/
multiset_test.cpp 63 int array [] = { 3, 6, 1, 2, 3, 2, 6, 7, 9 }; local
66 mset s(array, array + 9);
101 int array [] = { 3, 6, 1, 9 }; local
108 fn_mset s1(array+0, array + 4 , f );
118 fn_mset s2(array, array + 4, g);
  /ndk/tests/device/test-stlport/unit/
multiset_test.cpp 63 int array [] = { 3, 6, 1, 2, 3, 2, 6, 7, 9 }; local
66 mset s(array, array + 9);
101 int array [] = { 3, 6, 1, 9 }; local
108 fn_mset s1(array+0, array + 4 , f );
118 fn_mset s2(array, array + 4, g);
  /packages/apps/Camera2/src/com/android/camera/exif/
OrderedDataOutputStream.java 40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
  /packages/apps/Launcher3/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
  /packages/apps/Mms/src/com/android/mms/exif/
OrderedDataOutputStream.java 40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
  /packages/apps/Settings/src/com/android/settings/wifi/
Summary.java 27 ? R.array.wifi_status : R.array.wifi_status_with_ssid);
  /prebuilts/tools/common/m2/internal/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /external/chromium_org/v8/test/webkit/
JSON-stringify-replacer.js 27 var array = [0, 1, 2, undefined]; variable
56 return array;
71 shouldBeUndefined("JSON.stringify(array, returnUndefined)");
74 shouldBe("JSON.stringify(array, returnObjectFor1)", '\'[0,{},2,null]\'');
77 shouldBe("JSON.stringify(array, returnArrayFor1)", '\'[0,[],2,null]\'');
80 shouldBe("JSON.stringify(array, returnUndefinedFor1)", '\'[0,null,2,null]\'');
83 shouldBe("JSON.stringify(array, returnFunctionFor1)", '\'[0,null,2,null]\'');
86 shouldBe("JSON.stringify(array, returnNullFor1)", '\'[0,null,2,null]\'');
89 shouldBe("JSON.stringify(array, returnStringForUndefined)", '\'[0,1,2,"undefined value"]\'');
92 shouldThrow("JSON.stringify(array, returnCycleObjectFor1)")
    [all...]
array-every.js 25 "This test checks the behavior of the every() method on Array objects."
29 function isBigEnough(element, index, array) {
47 debug("3.0 Array Mutation Tests");
50 debug("3.1 Array Element Removal");
51 function isBigEnoughAndPop(element, index, array) {
52 array.pop();
59 debug("3.2 Array Element Changing");
60 function isBigEnoughAndChange(element, index, array) {
61 array[array.length-1-index]= 5
    [all...]
  /dalvik/vm/mterp/x86/
OP_AGET.S 4 * Array get, 32 bits or less. vAA <- vBB[vCC].
11 GET_VREG_R %eax %eax # eax<- vBB (array object)
13 testl %eax,%eax # null array object?
OP_AGET_WIDE.S 3 * Array get, 64 bits. vAA <- vBB[vCC].
9 GET_VREG_R %eax %eax # eax<- vBB (array object)
11 testl %eax,%eax # null array object?
OP_APUT.S 4 * Array put, 32 bits or less. vBB[vCC] <- vAA
11 GET_VREG_R %eax %eax # eax<- vBB (array object)
13 testl %eax,%eax # null array object?
OP_APUT_WIDE.S 3 * Array put, 64 bits. vBB[vCC]<-vAA.
9 GET_VREG_R %eax %eax # eax<- vBB (array object)
11 testl %eax,%eax # null array object?

Completed in 494 milliseconds

<<21222324252627282930>>