Searched refs:index (Results 101 - 125 of 6826) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/
H A Dalloca_big_alignment.cc7 __attribute__((noinline)) void foo(int index, int len) { argument
10 str[index] = '1'; // BOOM
H A Dalloca_overflow_partial.cc7 __attribute__((noinline)) void foo(int index, int len) { argument
10 str[index] = '1'; // BOOM
H A Dalloca_overflow_right.cc7 __attribute__((noinline)) void foo(int index, int len) { argument
10 str[index] = '1'; // BOOM
H A Dalloca_underflow_left.cc7 __attribute__((noinline)) void foo(int index, int len) { argument
10 str[index] = '1'; // BOOM
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_function.hh23 double simple_function(int index) argument
25 return index;
33 double pseudo_random(int /*index*/)
44 double null_function(int /*index*/)
/external/elfutils/tests/
H A Drun-ranlib-test3.sh21 indexed=testfile20.index
/external/lzma/CPP/Windows/Control/
H A DReBar.h16 bool InsertBand(int index, LPREBARBANDINFO bandInfo) argument
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, index, (LPARAM)bandInfo)); }
18 bool SetBandInfo(unsigned index, LPREBARBANDINFO bandInfo) argument
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); }
20 void MaximizeBand(unsigned index, bool ideal) argument
21 { SendMsg(RB_MAXIMIZEBAND, index, BoolToBOOL(ideal)); }
28 bool DeleteBand(UINT index) argument
29 { return LRESULTToBool(SendMsg(RB_DELETEBAND, index)); }
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_dibtransferfunc.cpp50 int index = 0; local
53 (*dest_buf)[index++] = b1;
54 (*dest_buf)[index++] = g1;
55 (*dest_buf)[index++] = r1;
57 (*dest_buf)[index++] = b0;
58 (*dest_buf)[index++] = g0;
59 (*dest_buf)[index++] = r0;
62 index++;
70 int index = 0; local
73 (*dest_buf)[index
81 int index = 0; local
102 int index = 0; local
108 int index = 0; local
122 int index = 0; local
[all...]
/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_DataMatrixSymbolInfo144.cpp38 int32_t index) {
39 return (index <= 8) ? 156 : 155;
37 CBC_DataMatrixSymbolInfo144getDataLengthForInterleavedBlock( int32_t index) argument
/external/proguard/src/proguard/classfile/util/
H A DClassSubHierarchyInitializer.java43 for (int index = 0; index < programClass.u2interfacesCount; index++)
45 addSubclass(programClass, programClass.getInterface(index));
59 for (int index = 0; index < interfaceClasses.length; index++)
62 addSubclass(libraryClass, interfaceClasses[index]);
/external/proguard/src/proguard/classfile/visitor/
H A DConcreteClassDownTraveler.java63 for (int index = 0; index < subClasses.length; index++)
65 subClasses[index].accept(this);
88 for (int index = 0; index < subClasses.length; index++)
90 subClasses[index].accept(this);
H A DMultiClassVisitor.java83 for (int index = 0; index < classVisitorCount; index++)
85 classVisitors[index].visitProgramClass(programClass);
92 for (int index = 0; index < classVisitorCount; index++)
94 classVisitors[index].visitLibraryClass(libraryClass);
/external/skia/src/pathops/
H A DSkOpCubicHull.cpp9 static bool rotate(const SkDCubic& cubic, int zero, int index, SkDCubic& rotPath) { argument
10 double dy = cubic[index].fY - cubic[zero].fY;
11 double dx = cubic[index].fX - cubic[zero].fX;
18 rotPath[index].fY = cubic[zero].fY;
19 int mask = other_two(index, zero);
20 int side1 = index ^ mask;
31 for (int index = 0; index < 4; ++index) {
32 rotPath[index]
56 size_t index; local
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DBitSetUtils.java39 for (int index: indexes) {
40 bitSet.set(index);
/external/trappy/hooks/
H A Dpre-commit26 git diff-index --check --cached HEAD --
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java30 /** Marks an array index step */
62 * @param index the index of the segment to return
65 public XMPPathSegment getSegment(int index) argument
67 return (XMPPathSegment) segments.get(index);
87 int index = 1;
88 while (index < size())
90 result.append(getSegment(index));
91 if (index < size() - 1)
93 int kind = getSegment(index
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java150 int index = iter.u16bitAt(pos + 2);
164 return opcodes[opcode] + " " + index;
195 private static String classInfo(ConstPool pool, int index) { argument
196 return "#" + index + " = Class " + pool.getClassInfo(index);
200 private static String interfaceMethodInfo(ConstPool pool, int index) { argument
201 return "#" + index + " = Method "
202 + pool.getInterfaceMethodrefClassName(index) + "."
203 + pool.getInterfaceMethodrefName(index) + "("
204 + pool.getInterfaceMethodrefType(index)
207 methodInfo(ConstPool pool, int index) argument
215 fieldInfo(ConstPool pool, int index) argument
262 ldc(ConstPool pool, int index) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DPointLabeler.java21 public String getLabel(XYSeries series, int index); argument
/external/guava/guava/src/com/google/common/escape/
H A DCharEscaper.java62 for (int index = 0; index < length; index++) {
63 if (escape(string.charAt(index)) != null) {
64 return escapeSlow(string, index);
71 * Returns the escaped form of a given literal string, starting at the given index. This method is
77 * @param index the index to start escaping from
81 protected final String escapeSlow(String s, int index) { argument
92 for (; index < sle
162 growBuffer(char[] dest, int index, int size) argument
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DFwdRef.java30 int index; field in class:FwdRef
/external/libchrome/base/threading/
H A Dthread_local_storage_unittest.cc99 // Create a TLS index with a destructor. Create a set of
110 for (int index = 0; index < kNumThreads; index++) {
111 values[index] = kInitialTlsValue;
112 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
113 threads[index] = new DelegateSimpleThread(thread_delegates[index],
115 threads[index]
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_bitmask.h65 * Returns the bit index on success, or UTIL_BITMASK_INVALID_INDEX on out of
74 * Returns the input index on success, or UTIL_BITMASK_INVALID_INDEX on out of
79 unsigned index);
83 unsigned index);
87 unsigned index);
104 * Search for the first set bit, starting from the giving index.
110 unsigned index);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DInvocationHistory.java38 * @param index - the index of the invocation record to return. The first record is at index zero.
39 * @return the InvocationRecord for the specified index
41 * @throws AssertFailedException - if there is no invocation record corresponding to the specified index */
42 public InvocationRecord getInvocation(int index); argument
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
H A DInvocationHistory.java38 * @param index - the index of the invocation record to return. The first record is at index zero.
39 * @return the InvocationRecord for the specified index
41 * @throws AssertFailedException - if there is no invocation record corresponding to the specified index */
42 public InvocationRecord getInvocation(int index); argument
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/core/command/
H A DInvocationHistory.java38 * @param index - the index of the invocation record to return. The first record is at index zero.
39 * @return the InvocationRecord for the specified index
41 * @throws AssertFailedException - if there is no invocation record corresponding to the specified index */
42 public InvocationRecord getInvocation(int index); argument

Completed in 1567 milliseconds

1234567891011>>