Home
last modified time | relevance | path

Searched refs:v8 (Results 1 – 25 of 894) sorted by relevance

12345678910>>...36

/external/webkit/Source/WebCore/bindings/scripts/test/V8/
DV8TestObj.cpp55 static v8::Handle<v8::Value> readOnlyIntAttrAttrGetter(v8::Local<v8::String> name, const v8::Access… in readOnlyIntAttrAttrGetter()
59 return v8::Integer::New(imp->readOnlyIntAttr()); in readOnlyIntAttrAttrGetter()
62 static v8::Handle<v8::Value> readOnlyStringAttrAttrGetter(v8::Local<v8::String> name, const v8::Acc… in readOnlyStringAttrAttrGetter()
69 static v8::Handle<v8::Value> readOnlyTestObjAttrAttrGetter(v8::Local<v8::String> name, const v8::Ac… in readOnlyTestObjAttrAttrGetter()
74v8::Handle<v8::Value> wrapper = result.get() ? getDOMObjectMap().get(result.get()) : v8::Handle<v8 in readOnlyTestObjAttrAttrGetter()
83 static v8::Handle<v8::Value> shortAttrAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo… in shortAttrAttrGetter()
87 return v8::Integer::New(imp->shortAttr()); in shortAttrAttrGetter()
90 static void shortAttrAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::A… in shortAttrAttrSetter()
99 static v8::Handle<v8::Value> unsignedShortAttrAttrGetter(v8::Local<v8::String> name, const v8::Acce… in unsignedShortAttrAttrGetter()
103 return v8::Integer::New(imp->unsignedShortAttr()); in unsignedShortAttrAttrGetter()
[all …]
/external/v8/test/cctest/
Dtest-thread-termination.cc33 v8::internal::Semaphore* semaphore = NULL;
36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) { in Signal()
38 return v8::Undefined(); in Signal()
42 v8::Handle<v8::Value> TerminateCurrentThread(const v8::Arguments& args) { in TerminateCurrentThread()
43 CHECK(!v8::V8::IsExecutionTerminating()); in TerminateCurrentThread()
44 v8::V8::TerminateExecution(); in TerminateCurrentThread()
45 return v8::Undefined(); in TerminateCurrentThread()
49 v8::Handle<v8::Value> Fail(const v8::Arguments& args) { in Fail()
51 return v8::Undefined(); in Fail()
55 v8::Handle<v8::Value> Loop(const v8::Arguments& args) { in Loop()
[all …]
Dtest-lockers.cc43 using ::v8::AccessorInfo;
44 using ::v8::Context;
45 using ::v8::Extension;
46 using ::v8::Function;
47 using ::v8::HandleScope;
48 using ::v8::Local;
49 using ::v8::Object;
50 using ::v8::ObjectTemplate;
51 using ::v8::Persistent;
52 using ::v8::Script;
[all …]
Dtest-debug.cc44 using ::v8::internal::EmbeddedVector;
45 using ::v8::internal::Object;
46 using ::v8::internal::OS;
47 using ::v8::internal::Handle;
48 using ::v8::internal::Heap;
49 using ::v8::internal::JSGlobalProxy;
50 using ::v8::internal::Code;
51 using ::v8::internal::Debug;
52 using ::v8::internal::Debugger;
53 using ::v8::internal::CommandMessage;
[all …]
Dtest-heap-profiler.cc55 static const v8::HeapGraphNode* GetGlobalObject( in GetGlobalObject()
56 const v8::HeapSnapshot* snapshot) { in GetGlobalObject()
58 const v8::HeapGraphNode* global_obj = in GetGlobalObject()
66 static const v8::HeapGraphNode* GetProperty(const v8::HeapGraphNode* node, in GetProperty()
67 v8::HeapGraphEdge::Type type, in GetProperty()
70 const v8::HeapGraphEdge* prop = node->GetChild(i); in GetProperty()
71 v8::String::AsciiValue prop_name(prop->GetName()); in GetProperty()
79 static bool HasString(const v8::HeapGraphNode* node, const char* contents) { in HasString()
81 const v8::HeapGraphEdge* prop = node->GetChild(i); in HasString()
82 const v8::HeapGraphNode* node = prop->GetToNode(); in HasString()
[all …]
Dtest-func-name-inference.cc35 using ::v8::internal::CStrVector;
36 using ::v8::internal::Factory;
37 using ::v8::internal::Handle;
38 using ::v8::internal::Heap;
39 using ::v8::internal::Isolate;
40 using ::v8::internal::JSFunction;
41 using ::v8::internal::Object;
42 using ::v8::internal::Runtime;
43 using ::v8::internal::Script;
44 using ::v8::internal::SmartArrayPointer;
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DScriptDebugServer.cpp46 class ClientDataImpl : public v8::Debug::ClientData {
65 v8::HandleScope scope; in setBreakpoint()
66 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext(); in setBreakpoint()
67 v8::Context::Scope contextScope(debuggerContext); in setBreakpoint()
69 v8::Local<v8::Object> args = v8::Object::New(); in setBreakpoint()
70 args->Set(v8::String::New("sourceID"), v8String(sourceID)); in setBreakpoint()
71 args->Set(v8::String::New("lineNumber"), v8::Integer::New(scriptBreakpoint.lineNumber)); in setBreakpoint()
72 args->Set(v8::String::New("columnNumber"), v8::Integer::New(scriptBreakpoint.columnNumber)); in setBreakpoint()
73 args->Set(v8::String::New("condition"), v8String(scriptBreakpoint.condition)); in setBreakpoint()
75v8::Handle<v8::Function> setBreakpointFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.ge… in setBreakpoint()
[all …]
DV8Proxy.h78 v8::AccessorGetter getter;
79 v8::AccessorSetter setter;
81 v8::AccessControl settings;
82 v8::PropertyAttribute attribute;
86 …void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::ObjectTemplate>, cons…
88 …inline void configureAttribute(v8::Handle<v8::ObjectTemplate> instance, v8::Handle<v8::ObjectTempl… in configureAttribute()
90 (attribute.onProto ? proto : instance)->SetAccessor(v8::String::New(attribute.name), in configureAttribute()
93 v8::External::Wrap(attribute.data), in configureAttribute()
106 …void batchConfigureConstants(v8::Handle<v8::FunctionTemplate>, v8::Handle<v8::ObjectTemplate>, con…
110 v8::InvocationCallback callback;
[all …]
DV8Binding.cpp52 class WebCoreStringResource : public v8::String::ExternalStringResource {
61 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * string.length()); in WebCoreStringResource()
72 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * string.length()); in WebCoreStringResource()
83 v8::V8::AdjustAmountOfExternalAllocatedMemory(reducedExternalMemory); in ~WebCoreStringResource()
104 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * m_atomicString.length()); in atomicString()
109 static WebCoreStringResource* toStringResource(v8::Handle<v8::String> v8String) in toStringResource()
129 String v8ValueToWebCoreString(v8::Handle<v8::Value> value) in v8ValueToWebCoreString()
132 return v8StringToWebCoreString(v8::Handle<v8::String>::Cast(value)); in v8ValueToWebCoreString()
136 AtomicString v8ValueToAtomicWebCoreString(v8::Handle<v8::Value> value) in v8ValueToAtomicWebCoreString()
139 return v8StringToAtomicWebCoreString(v8::Handle<v8::String>::Cast(value)); in v8ValueToAtomicWebCoreString()
[all …]
DV8NPObject.h46 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInf…
47 v8::Handle<v8::Value> npObjectIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo&);
48 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> na…
49 v8::Handle<v8::Value> npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index);
52 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>,…
53 v8::Handle<v8::Value> npObjectIndexedPropertySetter(uint32_t index, const v8::AccessorInfo&);
54 v8::Handle<v8::Value> npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> na…
55 v8::Handle<v8::Value> npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Lo…
57 v8::Handle<v8::Value> npObjectInvokeDefaultHandler(const v8::Arguments&);
62 v8::Local<v8::Object> createV8ObjectForNPObject(NPObject*, NPObject* root);
DV8Binding.h59 StringType v8StringToWebCoreString(v8::Handle<v8::String> v8String, ExternalMode external);
64 inline String v8StringToWebCoreString(v8::Handle<v8::String> v8String) in v8StringToWebCoreString()
68 String v8NonStringValueToWebCoreString(v8::Handle<v8::Value>);
69 String v8ValueToWebCoreString(v8::Handle<v8::Value> value);
72 inline AtomicString v8StringToAtomicWebCoreString(v8::Handle<v8::String> v8String) in v8StringToAtomicWebCoreString()
76 AtomicString v8NonStringValueToAtomicWebCoreString(v8::Handle<v8::Value>);
77 AtomicString v8ValueToAtomicWebCoreString(v8::Handle<v8::Value> value);
83 extern v8::Persistent<v8::String> lastV8String;
84 v8::Local<v8::String> v8ExternalStringSlow(StringImpl* stringImpl);
89 inline v8::Local<v8::String> v8ExternalString(const String& string) in v8ExternalString()
[all …]
DV8NPObject.cpp69 static v8::Handle<v8::Value> npObjectInvokeImpl(const v8::Arguments& args, InvokeFunctionType funct… in npObjectInvokeImpl()
116 v8::Handle<v8::String> functionName(v8::String::Cast(*args.Data())); in npObjectInvokeImpl()
140 v8::Handle<v8::Value> returnValue = convertNPVariantToV8Object(&result, npObject); in npObjectInvokeImpl()
147 v8::Handle<v8::Value> npObjectMethodHandler(const v8::Arguments& args) in npObjectMethodHandler()
153 v8::Handle<v8::Value> npObjectInvokeDefaultHandler(const v8::Arguments& args) in npObjectInvokeDefaultHandler()
162 static void weakTemplateCallback(v8::Persistent<v8::Value>, void* parameter);
165 static WeakReferenceMap<PrivateIdentifier, v8::FunctionTemplate> staticTemplateMap(&weakTemplateCal…
167 static void weakTemplateCallback(v8::Persistent<v8::Value> object, void* parameter) in weakTemplateCallback()
177 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifie… in npObjectGetProperty()
193 return v8::Handle<v8::Value>(); in npObjectGetProperty()
[all …]
DV8DOMWrapper.h65 static bool maybeDOMWrapper(v8::Handle<v8::Value>);
69 static void setDOMWrapper(v8::Handle<v8::Object> object, WrapperTypeInfo* type, void* cptr) in setDOMWrapper()
76 …static v8::Handle<v8::Object> lookupDOMWrapper(v8::Handle<v8::FunctionTemplate> functionTemplate, in lookupDOMWrapper()
81 static WrapperTypeInfo* domWrapperType(v8::Handle<v8::Object>);
83 … static v8::Handle<v8::Value> convertEventTargetToV8Object(PassRefPtr<EventTarget> eventTarget) in convertEventTargetToV8Object()
88 static v8::Handle<v8::Value> convertEventTargetToV8Object(EventTarget*);
90 …static PassRefPtr<EventListener> getEventListener(v8::Local<v8::Value> value, bool isAttribute, Li…
94 …static RefPtr<XPathNSResolver> getXPathNSResolver(v8::Handle<v8::Value> value, V8Proxy* proxy = 0);
98 static PassRefPtr<NodeFilter> wrapNativeNodeFilter(v8::Handle<v8::Value>);
100 …static v8::Local<v8::Function> getConstructorForContext(WrapperTypeInfo*, v8::Handle<v8::Context>);
[all …]
DV8Proxy.cpp91 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance, in batchConfigureAttributes()
92 v8::Handle<v8::ObjectTemplate> proto, in batchConfigureAttributes()
100 void batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> proto, in batchConfigureCallbacks()
101 v8::Handle<v8::Signature> signature, in batchConfigureCallbacks()
102 v8::PropertyAttribute attributes, in batchConfigureCallbacks()
107 proto->Set(v8::String::New(callbacks[i].name), in batchConfigureCallbacks()
108 v8::FunctionTemplate::New(callbacks[i].callback, in batchConfigureCallbacks()
109 v8::Handle<v8::Value>(), in batchConfigureCallbacks()
115 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor, in batchConfigureConstants()
116 v8::Handle<v8::ObjectTemplate> proto, in batchConfigureConstants()
[all …]
DV8Utilities.h46 void createHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex);
47 void removeHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex);
50 …void transferHiddenDependency(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value…
69 …PassRefPtr<V8CallbackType> createFunctionOnlyCallback(v8::Local<v8::Value> value, bool& succeeded,…
109 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
110 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::ObjectTemplate>);
111 …static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8:…
114 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function) in newInstance()
117 return v8::Local<v8::Object>(); in newInstance()
122 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::ObjectTemplate> objectTemplate) in newInstance()
[all …]
/external/webkit/Source/WebCore/
DAndroid.v8bindings.mk29 external/v8/include \
31 $(LOCAL_PATH)/bindings/v8 \
32 $(LOCAL_PATH)/bindings/v8/custom \
33 $(LOCAL_PATH)/bindings/v8/specialization \
36 $(LOCAL_PATH)/bridge/jni/v8 \
46 bindings/v8/ChildThreadDOMData.cpp \
47 bindings/v8/DateExtension.cpp \
48 bindings/v8/DOMData.cpp \
49 bindings/v8/DOMDataStore.cpp \
50 bindings/v8/DOMWrapperWorld.cpp \
[all …]
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLPlugInElementCustom.cpp48 static v8::Handle<v8::Value> npObjectNamedGetter(v8::Local<v8::String> name, const v8::AccessorInfo… in npObjectNamedGetter()
55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance()); in npObjectNamedGetter()
63 static v8::Handle<v8::Value> npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> v… in npObjectNamedSetter()
70 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance()); in npObjectNamedSetter()
77 v8::Handle<v8::Value> V8HTMLAppletElement::namedPropertyGetter(v8::Local<v8::String> name, const v8 in namedPropertyGetter()
83 v8::Handle<v8::Value> V8HTMLEmbedElement::namedPropertyGetter(v8::Local<v8::String> name, const v8:… in namedPropertyGetter()
89 v8::Handle<v8::Value> V8HTMLObjectElement::namedPropertyGetter(v8::Local<v8::String> name, const v8 in namedPropertyGetter()
95 v8::Handle<v8::Value> V8HTMLAppletElement::namedPropertySetter(v8::Local<v8::String> name, v8::Loca… in namedPropertySetter()
101 v8::Handle<v8::Value> V8HTMLEmbedElement::namedPropertySetter(v8::Local<v8::String> name, v8::Local… in namedPropertySetter()
107 v8::Handle<v8::Value> V8HTMLObjectElement::namedPropertySetter(v8::Local<v8::String> name, v8::Loca… in namedPropertySetter()
[all …]
DV8LocationCustom.cpp51 void V8Location::hashAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v… in hashAccessorSetter()
63 void V8Location::hostAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v… in hostAccessorSetter()
75 void V8Location::hostnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, con… in hostnameAccessorSetter()
87 void V8Location::hrefAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v… in hrefAccessorSetter()
99 void V8Location::pathnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, con… in pathnameAccessorSetter()
111 void V8Location::portAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v… in portAccessorSetter()
123 void V8Location::protocolAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, con… in protocolAccessorSetter()
138 void V8Location::searchAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const… in searchAccessorSetter()
150 v8::Handle<v8::Value> V8Location::reloadAccessorGetter(v8::Local<v8::String> name, const v8::Access… in reloadAccessorGetter()
153v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v… in reloadAccessorGetter()
[all …]
DV8DOMWindowCustom.cpp74 v8::Handle<v8::Value> WindowSetTimeoutImpl(const v8::Arguments& args, bool singleShot) in WindowSetTimeoutImpl()
79 return v8::Undefined(); in WindowSetTimeoutImpl()
86 return v8::Undefined(); in WindowSetTimeoutImpl()
89 v8::Handle<v8::Value> function = args[0]; in WindowSetTimeoutImpl()
95 v8::Handle<v8::Value> v8String = function->ToString(); in WindowSetTimeoutImpl()
99 return v8::Undefined(); in WindowSetTimeoutImpl()
107 return v8::Undefined(); in WindowSetTimeoutImpl()
115 return v8::Undefined(); in WindowSetTimeoutImpl()
120 v8::Local<v8::Value>* params = 0; in WindowSetTimeoutImpl()
122 params = new v8::Local<v8::Value>[paramCount]; in WindowSetTimeoutImpl()
[all …]
DV8StorageCustom.cpp43 v8::Handle<v8::Array> V8Storage::namedPropertyEnumerator(const v8::AccessorInfo& info) in namedPropertyEnumerator()
47 v8::Handle<v8::Array> properties = v8::Array::New(length); in namedPropertyEnumerator()
52 properties->Set(v8::Integer::New(i), v8String(key)); in namedPropertyEnumerator()
58 static v8::Handle<v8::Value> storageGetter(v8::Local<v8::String> v8Name, const v8::AccessorInfo& in… in storageGetter()
69 v8::Handle<v8::Value> V8Storage::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) in indexedPropertyGetter()
72 v8::Local<v8::Integer> indexV8 = v8::Integer::New(index); in indexedPropertyGetter()
76 v8::Handle<v8::Value> V8Storage::namedPropertyGetter(v8::Local<v8::String> name, const v8::Accessor… in namedPropertyGetter()
82 v8::Handle<v8::Integer> V8Storage::namedPropertyQuery(v8::Local<v8::String> v8Name, const v8::Acces… in namedPropertyQuery()
90 return v8::Integer::New(v8::None); in namedPropertyQuery()
92 return v8::Handle<v8::Integer>(); in namedPropertyQuery()
[all …]
DV8DeviceMotionEventCustom.cpp42 v8::Handle<v8::Value> createAccelerationObject(const DeviceMotionData::Acceleration* acceleration) in createAccelerationObject()
44 v8::Local<v8::Object> object = v8::Object::New(); in createAccelerationObject()
45 …object->Set(v8::String::New("x"), acceleration->canProvideX() ? v8::Number::New(acceleration->x())… in createAccelerationObject()
46 …object->Set(v8::String::New("y"), acceleration->canProvideY() ? v8::Number::New(acceleration->y())… in createAccelerationObject()
47 …object->Set(v8::String::New("z"), acceleration->canProvideZ() ? v8::Number::New(acceleration->z())… in createAccelerationObject()
51 v8::Handle<v8::Value> createRotationRateObject(const DeviceMotionData::RotationRate* rotationRate) in createRotationRateObject()
53 v8::Local<v8::Object> object = v8::Object::New(); in createRotationRateObject()
54 …object->Set(v8::String::New("alpha"), rotationRate->canProvideAlpha() ? v8::Number::New(rotationRa… in createRotationRateObject()
55 …object->Set(v8::String::New("beta"), rotationRate->canProvideBeta() ? v8::Number::New(rotationRa… in createRotationRateObject()
56 …object->Set(v8::String::New("gamma"), rotationRate->canProvideGamma() ? v8::Number::New(rotationRa… in createRotationRateObject()
[all …]
DV8InjectedScriptManager.cpp48 static void WeakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter) in WeakReferenceCallback()
55 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(InjectedScriptHost* host) in createInjectedScriptHostV8Wrapper()
57 v8::Local<v8::Function> function = V8InjectedScriptHost::GetTemplate()->GetFunction(); in createInjectedScriptHostV8Wrapper()
60 return v8::Local<v8::Object>(); in createInjectedScriptHostV8Wrapper()
62 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function); in createInjectedScriptHostV8Wrapper()
65 return v8::Local<v8::Object>(); in createInjectedScriptHostV8Wrapper()
71 v8::Persistent<v8::Object> weakHandle = v8::Persistent<v8::Object>::New(instance); in createInjectedScriptHostV8Wrapper()
78 v8::HandleScope scope; in createInjectedScript()
80 v8::Local<v8::Context> inspectedContext = inspectedScriptState->context(); in createInjectedScript()
81 v8::Context::Scope contextScope(inspectedContext); in createInjectedScript()
[all …]
/external/v8/samples/
Dshell.cc48 v8::Persistent<v8::Context> CreateShellContext();
49 void RunShell(v8::Handle<v8::Context> context);
51 bool ExecuteString(v8::Handle<v8::String> source,
52 v8::Handle<v8::Value> name,
55 v8::Handle<v8::Value> Print(const v8::Arguments& args);
56 v8::Handle<v8::Value> Read(const v8::Arguments& args);
57 v8::Handle<v8::Value> Load(const v8::Arguments& args);
58 v8::Handle<v8::Value> Quit(const v8::Arguments& args);
59 v8::Handle<v8::Value> Version(const v8::Arguments& args);
60 v8::Handle<v8::String> ReadFile(const char* name);
[all …]
Dlineprocessor.cc108 const char* ToCString(const v8::String::Utf8Value& value);
109 void ReportException(v8::TryCatch* handler);
110 v8::Handle<v8::String> ReadFile(const char* name);
111 v8::Handle<v8::String> ReadLine();
113 v8::Handle<v8::Value> Print(const v8::Arguments& args);
114 v8::Handle<v8::Value> ReadLine(const v8::Arguments& args);
115 bool RunCppCycle(v8::Handle<v8::Script> script, v8::Local<v8::Context> context,
120 v8::Persistent<v8::Context> debug_message_context;
134 v8::Context::Scope scope(debug_message_context); in DispatchDebugMessages()
136 v8::Debug::ProcessDebugMessages(); in DispatchDebugMessages()
[all …]
/external/srtp/crypto/cipher/
Daes.c1384 expanded_key[i].v8[0] = aes_sbox[expanded_key[i-1].v8[13]] ^ rc; in aes_expand_encryption_key()
1385 expanded_key[i].v8[1] = aes_sbox[expanded_key[i-1].v8[14]]; in aes_expand_encryption_key()
1386 expanded_key[i].v8[2] = aes_sbox[expanded_key[i-1].v8[15]]; in aes_expand_encryption_key()
1387 expanded_key[i].v8[3] = aes_sbox[expanded_key[i-1].v8[12]]; in aes_expand_encryption_key()
1472 c0 = U0[aes_sbox[expanded_key[i].v8[0]]] in aes_expand_decryption_key()
1473 ^ U1[aes_sbox[expanded_key[i].v8[1]]] in aes_expand_decryption_key()
1474 ^ U2[aes_sbox[expanded_key[i].v8[2]]] in aes_expand_decryption_key()
1475 ^ U3[aes_sbox[expanded_key[i].v8[3]]]; in aes_expand_decryption_key()
1477 c1 = U0[aes_sbox[expanded_key[i].v8[4]]] in aes_expand_decryption_key()
1478 ^ U1[aes_sbox[expanded_key[i].v8[5]]] in aes_expand_decryption_key()
[all …]

12345678910>>...36