Searched defs:nth (Results 1 - 14 of 14) sorted by relevance

/external/iptables/include/linux/netfilter/
H A Dxt_statistic.h31 } nth; member in union:xt_statistic_info::__anon5392
/external/kernel-headers/original/linux/netfilter/
H A Dxt_statistic.h27 } nth; member in union:xt_statistic_info::__anon5837
/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java167 * Returns the value of <code>exception_index_table[nth]</code>.
169 public int getException(int nth) { argument
170 int index = nth * 2 + 2; // nth >= 0
H A DExceptionTable.java92 * @param nth the <i>n</i>-th (&gt;= 0).
94 public int startPc(int nth) { argument
95 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
102 * @param nth the <i>n</i>-th (&gt;= 0).
105 public void setStartPc(int nth, int value) { argument
106 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
113 * @param nth the <i>n</i>-th (&gt;= 0).
115 public int endPc(int nth) { argument
116 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
123 * @param nth th
126 setEndPc(int nth, int value) argument
136 handlerPc(int nth) argument
147 setHandlerPc(int nth, int value) argument
159 catchType(int nth) argument
170 setCatchType(int nth, int value) argument
[all...]
H A DInnerClassesAttribute.java57 * Returns <code>classes[nth].inner_class_info_index</code>.
59 public int innerClassIndex(int nth) { argument
60 return ByteArray.readU16bit(get(), nth * 8 + 2);
65 * by <code>classes[nth].inner_class_info_index</code>.
69 public String innerClass(int nth) { argument
70 int i = innerClassIndex(nth);
78 * Sets <code>classes[nth].inner_class_info_index</code> to
81 public void setInnerClassIndex(int nth, int index) { argument
82 ByteArray.write16bit(index, get(), nth * 8 + 2);
86 * Returns <code>classes[nth]
88 outerClassIndex(int nth) argument
98 outerClass(int nth) argument
110 setOuterClassIndex(int nth, int index) argument
117 innerNameIndex(int nth) argument
127 innerName(int nth) argument
139 setInnerNameIndex(int nth, int index) argument
146 accessFlags(int nth) argument
154 setAccessFlags(int nth, int flags) argument
[all...]
H A DStackMapTable.java188 * @param nth the frame is the N-th
192 int stackMapFrames(int pos, int nth) throws BadBytecode { argument
/external/javassist/src/main/javassist/expr/
H A DHandler.java33 protected Handler(ExceptionTable et, int nth, argument
35 super(et.handlerPc(nth), it, declaring, m);
37 index = nth;
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java113 * @param nth zero or more than zero.
115 public ASTList sublist(int nth) { argument
117 while (nth-- > 0)
/external/stlport/test/unit/
H A Dallocator_test.cpp155 const size_t nth = 2; local
156 SharedDatas datas(nth);
157 pthread_t t[nth];
160 for (i = 0; i < nth; ++i) {
164 for (i = 0; i < nth; ++i ) {
H A Dstring_test.cpp213 const int nth = 2; local
215 pthread_t t[nth];
217 for ( int i = 0; i < nth; ++i ) {
221 for ( int i = 0; i < nth; ++i ) {
229 HANDLE t[nth];
232 for ( i = 0; i < nth; ++i ) {
236 if (WaitForMultipleObjects(nth, t, TRUE, INFINITE) == WAIT_FAILED) {
239 for ( i = 0; i < nth; ++i ) {
/external/bluetooth/glib/glib/
H A Dgbsearcharray.h68 guint nth);
178 guint nth)
180 return (G_LIKELY (nth < barray->n_nodes) ?
181 G_BSEARCH_ARRAY_NODES (barray) + nth * bconfig->sizeof_node :
176 g_bsearch_array_get_nth(GBSearchArray *barray, const GBSearchConfig *bconfig, guint nth) argument
/external/v8/test/cctest/
H A Dcctest.h140 static RegisterThreadedTest* nth(int i) { function in class:RegisterThreadedTest
/external/javassist/src/main/javassist/
H A DCtField.java511 * @param nth the n-th (&gt;= 0) parameter is used as
513 * If nth is 0, then the first parameter is
516 public static Initializer byParameter(int nth) { argument
518 i.nthParam = nth;
935 int nth = nthParamToLocal(nthParam, parameters, false);
936 int s = code.addLoad(nth, type) + 1;
948 * @param nth n-th parameter
952 static int nthParamToLocal(int nth, CtClass[] params, argument
962 for (int i = 0; i < nth; ++i) {
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.cpp210 static unsigned instructionOffsetForNth(ExecState* exec, const Vector<Instruction>& instructions, int nth, bool (*predicate)(OpcodeID)) argument
216 if (!--nth)

Completed in 313 milliseconds