HomeSort by relevance Sort by last modified time
    Searched defs:at (Results 51 - 75 of 489) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 53 * Insert a new entry at the tail
93 struct list_head *at = head->next; local
98 last->next = at;
99 at->prev = last;
  /external/elfutils/src/tests/
dwarf-getmacros.c 8 (at your option) any later version.
43 Dwarf_Attribute at; local
44 int r = dwarf_macro_param (macro, 0, &at);
48 r = dwarf_formudata (&at, &w);
  /external/iproute2/include/linux/tc_act/
tc_pedit.h 21 __u32 at; member in struct:tc_pedit_key
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
VertexCache.java 84 public int at(int index) { method in class:VertexCache
StripInfo.java 109 if( (faceVec.at(i).m_v0 == face.m_v0) ||
110 (faceVec.at(i).m_v1 == face.m_v0) ||
111 (faceVec.at(i).m_v2 == face.m_v0) )
117 if( (faceVec.at(i).m_v0 == face.m_v1) ||
118 (faceVec.at(i).m_v1 == face.m_v1) ||
119 (faceVec.at(i).m_v2 == face.m_v1) )
125 if( (faceVec.at(i).m_v0 == face.m_v2) ||
126 (faceVec.at(i).m_v1 == face.m_v2) ||
127 (faceVec.at(i).m_v2 == face.m_v2) )
228 tempAllFaces.add(forwardFaces.at(i));
    [all...]
  /external/kernel-headers/original/uapi/linux/tc_act/
tc_pedit.h 21 __u32 at; member in struct:tc_pedit_key
  /external/llvm/test/MC/AArch64/
arm64-diags.s 354 at s1e1r label
355 ; CHECK-ERRORS: error: specified at op requires a register
356 at s1e2r label
357 ; CHECK-ERRORS: error: specified at op requires a register
358 at s1e3r label
359 ; CHECK-ERRORS: error: specified at op requires a register
360 at s1e1w label
361 ; CHECK-ERRORS: error: specified at op requires a register
362 at s1e2w label
363 ; CHECK-ERRORS: error: specified at op requires a registe
364 at s1e3w label
366 at s1e0r label
368 at s1e0w label
370 at s12e1r label
372 at s12e1w label
374 at s12e0r label
376 at s12e0w label
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 147 const char& at (size_type index) const function in class:TiXmlString
  /external/skia/src/core/
SkTDPQueue.h 95 /** Gets the item at index i in the priority queue (for i < this->count()). at(0) is equivalent
97 T at(int i) const { return fArray[i]; } function in class:SkTDPQueue
  /external/tinyxml/
tinystr.h 146 const char& at (size_type index) const function in class:TiXmlString
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 23 __u32 at; member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/tc_act/
tc_pedit.h 39 __u32 at; member in struct:tc_pedit_key
  /cts/tools/signature-tools/src/signature/compare/
Main.java 6 * You may obtain a copy of the License at
53 int at = 0; local
55 if (!"--from".equals(args[at])) {
58 String fromType = args[++at];
62 ++at;
63 for (/* at */; at < args.length; at++) {
64 if ("--name".equals(args[at])) {
68 if ("--to".equals(args[at])) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
55 int at = 0; local
57 items[at] = new AnnotationItem(a);
58 at++;
69 // This includes an int size at the start of the list.
  /dalvik/dexgen/src/com/android/dexgen/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 6 * You may obtain a copy of the License at
42 int at = 0; local
44 for (/*at*/; at < args.length; at++) {
45 String arg = args[at];
78 if (at == args.length) {
83 for (/*at*/; at < args.length; at++)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
56 int at = 0; local
58 items[at] = new AnnotationItem(a, dexFile);
59 at++;
70 // This includes an int size at the start of the list.
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
  /external/boringssl/src/crypto/x509/
x509_att.c 20 * This can be in the form of a textual message at program startup or
197 X509_ATTRIBUTE *at; local
203 at = X509at_get_attr(x, i);
204 if (lastpos <= -3 && (X509_ATTRIBUTE_count(at) != 1))
206 return X509_ATTRIBUTE_get0_data(at, 0, type, NULL);
301 * at least one value but some types use and zero length SET and

Completed in 536 milliseconds

1 23 4 5 6 7 8 91011>>