Searched defs:jit (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dautoportallocator.h52 buzz::JingleInfoTask* jit = new buzz::JingleInfoTask(client); local
53 jit->SignalJingleInfo.connect(this, &AutoPortAllocator::OnJingleInfo);
54 jit->Start();
55 jit->RefreshJingleInfoNow();
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py784 def jit(self): pass member in class:TransUnit._psyco
/external/pcre/dist/
H A DRunTest.bat18 @rem 12 requires presence of jit support
19 @rem 13 requires absence of jit support
20 @rem Sheri P also added override tests for study and jit testing
62 %pcretest% -C jit >NUL
63 set jit=%ERRORLEVEL% variable
312 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -s+
318 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -s+
324 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -s+
334 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -s+
344 if %jit
[all...]
H A Dpcre_jit_test.c97 int jit = 0; local
99 pcre_config(PCRE_CONFIG_JIT, &jit);
101 pcre16_config(PCRE_CONFIG_JIT, &jit);
103 pcre32_config(PCRE_CONFIG_JIT, &jit);
105 if (!jit) {
H A Dpcretest.c2933 printf(" jit Just-in-time compiler supported [0, 1]\n");
3263 else if (strcmp(argv[op + 1], "jit") == 0)
4383 int jit; local
4384 if (new_info(re, extra, PCRE_INFO_JIT, &jit) == 0)
4386 if (jit)
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp101 void Add(JIT *jit) { argument
103 JITs.insert(jit);
105 void Remove(JIT *jit) { argument
107 JITs.erase(jit);
H A DJITEmitter.cpp55 #define DEBUG_TYPE "jit"
117 JITResolverState(JIT *jit) : FunctionToLazyStubMap(this), argument
120 TheJIT = jit;
191 explicit JITResolver(JIT &jit, JITEmitter &je) argument
192 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
193 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
358 JITEmitter(JIT &jit, JITMemoryManager *JMM, TargetMachine &TM) argument
359 : SizeEstimate(0), Resolver(jit, *this), MMI(nullptr), CurFn(nullptr),
360 EmittedFunctions(this), TheJIT(&jit) {
[all...]

Completed in 262 milliseconds