HomeSort by relevance Sort by last modified time
    Searched refs:_i (Results 51 - 75 of 120) sorted by null

1 23 4 5

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
aligncomm-a.d 10 0010 202d616c 69676e63 6f6d6d3a 5f692c34 -aligncomm:_i,4
aligncomm-b.d 15 0060 6f6d6d3a 5f692c34 202d616c 69676e63 omm:_i,4 -alignc
  /external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
MetadataItem.java 40 public void __init(int _i, ByteBuffer _bb) {
41 bb_pos = _i;
45 public MetadataItem __assign(int _i, ByteBuffer _bb) {
46 __init(_i, _bb);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sched.h 75 #define sched_rr_get_interval(_p, _i) \
stdlib.h 669 __MINGW_EXTENSION __CRT_INLINE char *__cdecl lltoa (long long _n, char * _c, int _i) { return _i64toa (_n, _c, _i); }
670 __MINGW_EXTENSION __CRT_INLINE char *__cdecl ulltoa (unsigned long long _n, char * _c, int _i) { return _ui64toa (_n, _c, _i); }
672 __MINGW_EXTENSION __CRT_INLINE wchar_t *__cdecl lltow (long long _n, wchar_t * _w, int _i) { return _i64tow (_n, _w, _i); }
673 __MINGW_EXTENSION __CRT_INLINE wchar_t *__cdecl ulltow (unsigned long long _n, wchar_t * _w, int _i) { return _ui64tow (_n, _w, _i); }
  /external/flatbuffers/tests/MyGame/Example/
Stat.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
16 public Stat __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
Stat.php 39 * @param int $_i offset
43 public function init($_i, ByteBuffer $_bb)
45 $this->bb_pos = $_i;
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInC.java 14 public TableInC __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
TableInFirstNS.php 24 * @param int $_i offset
28 public function init($_i, ByteBuffer $_bb)
30 $this->bb_pos = $_i;
TableInC.cs 12 public TableInC __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 154 #define TokenString(_i) ((TokenInd!=NULL)?TokenStr[TokenInd[_i]]:TokenStr[_i])
155 #define ExprString(_i) ((TokenInd!=NULL)?ExprStr[TokenInd[_i]]:ExprStr[_i])
  /external/valgrind/helgrind/
hg_wordset.c 84 UWord _i; \
96 for (_i = 1; _i < _cache->inUse; _i++) { \
97 if (_cache->ent[_i].arg1 == _arg1 \
98 && _cache->ent[_i].arg2 == _arg2) { \
99 WCacheEnt tmp = _cache->ent[_i-1]; \
100 _cache->ent[_i-1] = _cache->ent[_i]; \
101 _cache->ent[_i] = tmp;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 123 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
124 Dest.AggregateVal[_i].IntVal = APInt(1, \
125 Src1.AggregateVal[_i].IntVal.OP(Src2.AggregateVal[_i].IntVal));\
312 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
313 Dest.AggregateVal[_i].IntVal = APInt(1,
    [all...]
  /external/flatbuffers/tests/
monster_test_generated.h     [all...]
  /external/tcpdump/
print-rx.c 760 #define STROUT(MAX) { unsigned int _i; \
762 _i = EXTRACT_32BITS(bp); \
763 if (_i > (MAX)) \
767 if (fn_printn(ndo, bp, _i, ndo->ndo_snapend)) \
770 bp += ((_i + sizeof(int32_t) - 1) / sizeof(int32_t)) * sizeof(int32_t); \
773 #define INTOUT() { int _i; \
775 _i = (int) EXTRACT_32BITS(bp); \
777 ND_PRINT((ndo, " %d", _i)); \
780 #define UINTOUT() { unsigned long _i; \
782 _i = EXTRACT_32BITS(bp);
    [all...]
  /external/libunwind_llvm/src/
UnwindCursor.hpp 701 : _i(i), _addressSpace(&addressSpace), _sects(&sects) {}
703 _Self& operator++() { ++_i; return *this; }
704 _Self& operator+=(size_t a) { _i += a; return *this; }
705 _Self& operator--() { assert(_i > 0); --_i; return *this; }
706 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
708 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; }
709 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out;
734 size_t _i; member in struct:libunwind::EHABISectionIterator
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindCursor.hpp 648 : _i(i), _addressSpace(&addressSpace), _sects(&sects) {}
650 _Self& operator++() { ++_i; return *this; }
651 _Self& operator+=(size_t a) { _i += a; return *this; }
652 _Self& operator--() { assert(_i > 0); --_i; return *this; }
653 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
655 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; }
656 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out;
681 size_t _i; member in struct:libunwind::EHABISectionIterator
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
antlr.h 367 {int _i; for(_i=1;_i<=LL_K; _i++) \
387 #define zzPrimeLookAhead {int _i; zzlap = 0; for(_i=1;_i<=LL_K; _i++) \
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
antlr.h 355 {int _i; for(_i=1;_i<=LL_K; _i++) \
375 #define zzPrimeLookAhead {int _i; zzlap = 0; for(_i=1;_i<=LL_K; _i++) \
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_private.h 494 #define DRAW_GET_IDX(_elts, _i) \
495 (((_i) >= draw->pt.user.eltMax) ? 0 : (_elts)[_i])
  /external/opencv/cxcore/src/
cxsvd.cpp 49 int _i; \
53 for( _i = 0; _i < n; _i++ ) \
55 double t0 = _x[_i]; \
56 double t1 = _y[_i]; \
57 _x[_i] = t0*c + t1*s; \
58 _y[_i] = -t0*s + t1*c; \
131 int _i; \
135 for( _i = 0; _i < n; _i++ )
    [all...]
  /external/flatbuffers/samples/
monster_generated.h 439 { auto _e = inventory(); if (_e) for (flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->inventory.push_back(_e->Get(_i)); } };
441 { auto _e = weapons(); if (_e) for (flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->weapons.push_back(std::unique_ptr<WeaponT>(_e->Get(_i)->UnPack(_resolver))); } };
  /frameworks/native/libs/math/include/math/
quat.h 147 constexpr inline quat operator"" _i(long double v) {
157 constexpr inline quat operator"" _i(unsigned long long v) { // NOLINT
  /system/chre/host/common/include/chre_host/
host_messages_generated.h     [all...]
  /device/huawei/angler/camera/QCamera2/stack/common/
cam_intf.h 553 for (size_t _i = 0; _i < COUNT ; _i++) { \
554 TABLE_PTR->data.member_variable_##META_ID[ _i ] = PDATA [ _i ]; \
    [all...]

Completed in 1650 milliseconds

1 23 4 5