HomeSort by relevance Sort by last modified time
    Searched refs:v8 (Results 451 - 475 of 1233) sorted by null

<<11121314151617181920>>

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_int/d/
T_shr_int_2.d 16 shr-int v0, v6, v8
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_int_2addr/d/
T_shr_int_2addr_2.d 16 shr-int/2addr v6, v8
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_int_lit8/d/
T_shr_int_lit8_7.d 16 shr-int/lit8 v0, v8, 2
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long/d/
T_shr_long_1.d 16 shr-long v0, v8, v10
T_shr_long_2.d 16 shr-long v0, v8, v11
T_shr_long_7.d 16 shr-long v0, v8, v10
  /dalvik/dx/tests/120-disable-extended-ops/
Blort.java 39 int v8 = field8; local
60 sink(v8);
  /external/v8/src/
atomicops_internals_x86_gcc.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
60 namespace v8 { namespace
71 } } // namespace v8::internal
77 using v8::internal::AtomicOps_Internalx86CPUFeatures;
handles.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
34 namespace v8 { namespace
91 inline Handle<T> EscapeFrom(v8::HandleScope* scope);
159 friend class v8::HandleScope;
160 friend class v8::ImplementationUtilities;
233 v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSReceiver> receiver,
235 v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSReceiver> receiver,
300 } } // namespace v8::interna
    [all...]
v8.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
29 // Top include for all V8 .cc files.
38 // V8 only uses DEBUG and whenever it is set we are building a debug
39 // version of V8. We do not use NDEBUG and simply undef it here for
45 // V8 only uses DEBUG, but included external files
52 #include "../include/v8.h"
69 namespace v8 { namespace
74 class V8 : public AllStatic {
124 // True if V8 has ever been run
147 } } // namespace v8::interna
    [all...]
v8utils.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
34 namespace v8 { namespace
114 inline Vector< Handle<Object> > HandleVector(v8::internal::Handle<T>* elms,
117 reinterpret_cast<v8::internal::Handle<Object>*>(elms), length);
178 class AsciiStringAdapter: public v8::String::ExternalAsciiStringResource {
232 v8::String::ExternalAsciiStringResource {
274 } } // namespace v8::internal
debug-agent.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
29 #include "v8.h"
35 namespace v8 { namespace
38 // Public V8 debugger API message handler function. This function just delegates
40 void DebuggerAgentMessageHandler(const v8::Debug::Message& message) {
138 void DebuggerAgent::DebuggerMessage(const v8::Debug::Message& message) {
143 v8::String::Value val(message.GetJSON());
206 v8::Debug::SendCommand(reinterpret_cast<const uint16_t *>(temp.start()),
209 reinterpret_cast<v8::Isolate*>(agent_->isolate()));
336 "V8-Version: %s\r\n", v8::V8::GetVersion())
    [all...]
handles.cc 1 // Copyright 2011 the V8 project authors. All rights reserved.
28 #include "v8.h"
44 namespace v8 { namespace
60 v8::ImplementationUtilities::HandleScopeData* current =
69 Utils::ReportApiFailure("v8::HandleScope::CreateHandle()",
101 v8::ImplementationUtilities::HandleScopeData* current =
110 *reinterpret_cast<Address*>(p) = v8::internal::kHandleZapValue;
353 static void ClearWrapperCache(Persistent<v8::Value> handle, void*) {
547 v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSReceiver> receiver
    [all...]
atomicops_internals_x86_macosx.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
35 namespace v8 { namespace
254 return v8::internal::Acquire_CompareAndSwap(
262 return v8::internal::Release_CompareAndSwap(
273 return v8::internal::Acquire_Store(
278 return v8::internal::Release_Store(
288 return v8::internal::Acquire_Load(
293 return v8::internal::Release_Load(
299 } } // namespace v8::internal
isolate.h 1 // Copyright 2012 the V8 project authors. All rights reserved.
31 #include "../include/v8-debug.h"
49 namespace v8 { namespace
169 // (required for public API: V8::V8::GetCurrentThreadId).
173 // (required for public API: V8::V8::TerminateExecution).
207 v8::TryCatch* TryCatchHandler();
251 v8::TryCatch* catcher_;
271 v8::FailedAccessCheckCallback failed_access_check_callback_
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 109 virtual v8::Handle<v8::Value> executeScriptAndReturnValue(
111 virtual v8::Local<v8::Context> mainWorldScriptContext() const;
112 virtual v8::Handle<v8::Value> createFileSystem(WebFileSystem::Type,
115 virtual v8::Handle<v8::Value> createFileEntry(WebFileSystem::Type,
  /external/srtp/crypto/cipher/
aes_cbc.c 142 c->previous.v8[i] = c->state.v8[i] = input[i];
179 c->state.v8[i] ^= *input++;
191 *output++ = c->state.v8[i];
218 previous.v8[i] = c->previous.v8[i];
232 state.v8[i] = *input++;
251 *output++ = state.v8[i] ^ previous.v8[i];
252 previous.v8[i] = tmp
    [all...]
  /external/v8/include/
v8.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
28 /** \mainpage V8 API Reference Guide
30 * V8 is Google's open source JavaScript engine.
33 * V8 header file, include/v8.h.
35 * For other documentation see http://code.google.com/apis/v8/
45 // Setup for Windows DLL export/import. When building the V8 DLL the
47 // the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8
48 // static library or building a program which uses the V8 static library neithe
79 namespace v8 { namespace
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
variance_altivec.asm 40 vspltisw v8, 0 ;# zero out total to start
57 vsum4shs v8, v2, v8
62 vsum4shs v8, v2, v8
86 vsumsws v8, v8, v7
89 stvx v8, 0, r1
130 vsumsws v8, v8, v
    [all...]
loopfilter_filters_altivec.asm 116 Tpair v16,v17, v0,v8
131 Tpair v8,v9, v20,v28
245 ;# preserving v8 = sign converter.
286 vmrghb v8, v20, v28
294 vmrghb v16, v0, v8
295 vmrglb v17, v0, v8
318 vmrghb v8, v20, v28
326 vmrghb v16, v0, v8
327 vmrglb v17, v0, v8
392 vcmpgtub v8, v14, v8 ;# X = true if flimit exceede
    [all...]
  /external/v8/test/cctest/
test-hashing.cc 1 // Copyright 2011 the V8 project authors. All rights reserved.
30 #include "v8.h"
42 using namespace v8::internal;
47 static v8::Persistent<v8::Context> env;
156 v8::HandleScope scope;
157 v8::internal::byte buffer[2048];
185 v8::HandleScope scope;
186 v8::internal::byte buffer[2048];
226 if (env.IsEmpty()) env = v8::Context::New()
    [all...]
test-mark-compact.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
38 #include "v8.h"
44 using namespace v8::internal;
46 static v8::Persistent<v8::Context> env;
49 if (env.IsEmpty()) env = v8::Context::New();
50 v8::HandleScope scope;
93 v8::HandleScope sc;
121 v8::HandleScope sc;
159 v8::HandleScope sc
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-gap.js 1 // Copyright 2010 the V8 project authors. All rights reserved.
39 function select(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) {
48 v7 = v8;
49 v8 = v9;
56 function select_while(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) {
66 v7 = v8;
67 v8 = v9;
  /external/flac/libFLAC/ppc/as/
lpc_asm.s 78 ; load coefficients into v0-v7 and initial history into v8-v15
111 lvx v8,0,r11
114 vperm v8,v9,v8,v16
232 vmulosh v20,v0,v8 ; v20: sum vector
267 vsldoi v9,v9,v8,4
284 vsldoi v8,v8,v20,4 ; insert value onto history
397 vmulosh v8,v0,v2 ; v8: sum vecto
    [all...]
  /external/flac/libFLAC/ppc/gas/
lpc_asm.s 80 # load coefficients into v0-v7 and initial history into v8-v15
113 lvx v8,0,r11
116 vperm v8,v9,v8,v16
234 vmulosh v20,v0,v8 # v20: sum vector
269 vsldoi v9,v9,v8,4
286 vsldoi v8,v8,v20,4 # insert value onto history
399 vmulosh v8,v0,v2 # v8: sum vecto
    [all...]

Completed in 933 milliseconds

<<11121314151617181920>>