HomeSort by relevance Sort by last modified time
    Searched defs:here (Results 1 - 21 of 21) sorted by null

  /external/clang/test/Lexer/
cxx1z-trigraphs.cpp 9 error here; // expected-error {{}} variable
  /external/chromium_org/tools/gyp/test/compiler-override/
gyptest-compiler-env-toolchain.py 15 here = os.path.dirname(os.path.abspath(__file__)) variable
57 env = {'CC': 'python %s/my_cc.py FOO' % here,
58 'CXX': 'python %s/my_cxx.py FOO' % here,
59 'NM': 'python %s/my_nm.py' % here,
60 'READELF': 'python %s/my_readelf.py' % here}
gyptest-compiler-env.py 15 here = os.path.dirname(os.path.abspath(__file__)) variable
46 os.environ['CC'] = 'python %s/my_cc.py FOO' % here
47 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here
48 os.environ['LINK'] = 'python %s/my_ld.py FOO_LINK' % here
65 os.environ['CC'] = 'python %s/my_cc.py FOO' % here
66 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here
91 os.environ['CC_host'] = 'python %s/my_cc.py HOST' % here
92 os.environ['CXX_host'] = 'python %s/my_cxx.py HOST' % here
93 os.environ['LINK_host'] = 'python %s/my_ld.py HOST_LINK' % here
  /external/compiler-rt/test/asan/android_commands/
android_compile.py 7 here = os.path.abspath(os.path.dirname(sys.argv[0])) variable
8 android_run = os.path.join(here, 'android_run.py')
android_run.py 8 here = os.path.abspath(os.path.dirname(sys.argv[0])) variable
  /external/e2fsprogs/intl/
finddomain.c 184 struct loaded_l10nfile *here = runp; local
188 free ((char *) here->filename);
189 free (here);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi.c 121 SVGA3dShaderInstToken *here; local
126 here = (SVGA3dShaderInstToken *)emit->ptr;
127 here->value = opcode;
132 prev->size = (here - prev) - 1;
374 * that would make it larger. We just regenerate it here instead.
  /external/chromium_org/third_party/zlib/
inffast.c 90 code here; /* retrieved table entry */ local
127 here = lcode[hold & lmask];
129 op = (unsigned)(here.bits);
132 op = (unsigned)(here.op);
134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
136 "inflate: literal 0x%02x\n", here.val));
137 PUP(out) = (unsigned char)(here.val);
140 len = (unsigned)(here.val);
158 here = dcode[hold & dmask]
    [all...]
inftrees.c 53 code here; /* table entry for duplication */ local
118 here.op = (unsigned char)64; /* invalid code marker */
119 here.bits = (unsigned char)1;
120 here.val = (unsigned short)0;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
218 here.bits = (unsigned char)(len - drop);
220 here.op = (unsigned char)0;
221 here.val = work[sym];
224 here.op = (unsigned char)(extra[work[sym]])
    [all...]
infback.c 256 code here; /* current decoding table entry */ local
392 here = state->lencode[BITS(state->lenbits)];
393 if ((unsigned)(here.bits) <= bits) break;
396 if (here.val < 16) {
397 NEEDBITS(here.bits);
398 DROPBITS(here.bits);
399 state->lens[state->have++] = here.val;
402 if (here.val == 16) {
403 NEEDBITS(here.bits + 2);
404 DROPBITS(here.bits)
    [all...]
inflate.c 602 code here; /* current decoding table entry */ local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi.c 121 SVGA3dShaderInstToken *here; local
126 here = (SVGA3dShaderInstToken *)emit->ptr;
127 here->value = opcode;
132 prev->size = (here - prev) - 1;
374 * that would make it larger. We just regenerate it here instead.
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Initializer.cpp 138 // FIXME: Can we even get here during initialization now that we bail out when GetEntered returns an empty handle?
271 uint32_t here; local
272 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here - kWorkerMaxStackSize / sizeof(uint32_t*)));
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNode.h 68 NodeType* here() const { return static_cast<NodeType*>(const_cast<TreeNode*>(this)); } function in class:WTF::TreeNode
87 newChild->m_parent = here();
103 child->m_parent = here();
180 typename TreeNode<T>::NodeType* first = current->here();
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
mr_dissim.c 104 const MODE_INFO *here = tmp; local
105 const MODE_INFO *above = here - cm->mode_info_stride;
106 const MODE_INFO *left = here - 1;
125 right = here + 1;
133 below = here + cm->mode_info_stride;
154 right = here + 1;
162 below = here + cm->mode_info_stride;
195 mmvx = MAX(abs(min_mvx - here->mbmi.mv.as_mv.row),
196 abs(max_mvx - here->mbmi.mv.as_mv.row));
197 mmvy = MAX(abs(min_mvy - here->mbmi.mv.as_mv.col)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mr_dissim.c 103 const MODE_INFO *here = tmp; local
104 const MODE_INFO *above = here - cm->mode_info_stride;
105 const MODE_INFO *left = here - 1;
124 right = here + 1;
132 below = here + cm->mode_info_stride;
153 right = here + 1;
161 below = here + cm->mode_info_stride;
194 mmvx = MAX(abs(min_mvx - here->mbmi.mv.as_mv.row),
195 abs(max_mvx - here->mbmi.mv.as_mv.row));
196 mmvy = MAX(abs(min_mvy - here->mbmi.mv.as_mv.col)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 111 const char *offp; /* offsets work from here */
113 const char *endp; /* end of string -- virtual NUL here */
114 const char *coldp; /* can be no match starting before here */
311 /* despite initial appearances, there is no match here */
364 const char *stp; /* string matched by it cannot pass here */
978 onestate here; /* note, macros know this name */ local
984 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
1021 case OBACK_: /* ignored here */
1035 INIT(here, pc)
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttgxvar.c 1108 FT_ULong here; local
1315 FT_ULong here; local
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 1108 FT_ULong here; local
1315 FT_ULong here; local
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xpath.h 317 xmlNodePtr here; /* for here() */ member in struct:_xmlXPathContext
  /external/libxml2/include/libxml/
xpath.h 319 xmlNodePtr here; /* for here() */ member in struct:_xmlXPathContext

Completed in 883 milliseconds