Home
last modified time | relevance | path

Searched refs:Uint32 (Results 1 – 13 of 13) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dchacha20_poly1305.go88 state[4+i] = binary.LittleEndian.Uint32(c.key[i*4 : i*4+4])
90 state[14] = binary.LittleEndian.Uint32(nonce[0:4])
91 state[15] = binary.LittleEndian.Uint32(nonce[4:8])
/external/skia/src/views/sdl/
DSkOSWindow_SDL.cpp215 static Uint32 timer_callback(Uint32 interval) { in timer_callback()
/external/deqp/framework/opengl/
DgluDrawUtil.hpp263 DECLARE_VA_CTOR(Uint32, deUint32, VTX_COMP_UNSIGNED_INT32, VTX_COMP_CONVERT_NONE);
/external/v8/src/
Dtypedarray.js390 FUNCTION(Uint32)
Dapi.h243 static inline Local<Uint32> Uint32ToLocal(
362 MAKE_TO_LOCAL(Uint32ToLocal, Object, Uint32) in MAKE_TO_LOCAL()
Druntime.cc1439 DATA_VIEW_GETTER(Uint32, uint32_t, NewNumberFromUint)
1521 DATA_VIEW_SETTER(Uint32, uint32_t) in DATA_VIEW_SETTER()
3157 CONVERT_NUMBER_CHECKED(uint32_t, i, Uint32, args[1]); in RUNTIME_FUNCTION()
3176 CONVERT_NUMBER_CHECKED(uint32_t, code, Uint32, args[0]); in RUNTIME_FUNCTION()
6772 CONVERT_NUMBER_CHECKED(uint32_t, limit, Uint32, args[2]); in RUNTIME_FUNCTION()
6895 CONVERT_NUMBER_CHECKED(uint32_t, limit, Uint32, args[1]); in RUNTIME_FUNCTION()
6997 CONVERT_NUMBER_CHECKED(int32_t, number, Uint32, args[0]); in RUNTIME_FUNCTION()
7421 CONVERT_NUMBER_CHECKED(uint32_t, array_length, Uint32, args[1]); in RUNTIME_FUNCTION()
7440 CONVERT_NUMBER_CHECKED(uint32_t, position, Uint32, elements->get(i)); in RUNTIME_FUNCTION()
7554 CONVERT_NUMBER_CHECKED(uint32_t, x, Uint32, args[0]); in RUNTIME_FUNCTION()
[all …]
Dapi.cc2944 Local<Uint32> Value::ToUint32() const { in ToUint32()
2956 EXCEPTION_BAILOUT_CHECK(isolate, Local<Uint32>()); in ToUint32()
2958 return ToApiHandle<Uint32>(num); in ToUint32()
2962 Local<Uint32> Value::ToArrayIndex() const { in ToArrayIndex()
2966 return Local<Uint32>(); in ToArrayIndex()
2975 EXCEPTION_BAILOUT_CHECK(isolate, Local<Uint32>()); in ToArrayIndex()
2987 return Local<Uint32>(); in ToArrayIndex()
4963 uint32_t Uint32::Value() const { in Value()
Dobjects.h4435 V(Uint32, uint32, UINT32, uint32_t, 4) \
/external/deqp/modules/gles3/functional/
Des3fShaderPrecisionTests.cpp793 vertexArrays.push_back(glu::va::Uint32("a_in0", 1, numVertices, 0, &in0Arr[0])); in iterate()
794 vertexArrays.push_back(glu::va::Uint32("a_in1", 1, numVertices, 0, &in1Arr[0])); in iterate()
/external/v8/include/
Dv8.h98 class Uint32; variable
1677 Local<Uint32> ToUint32() const;
1684 Local<Uint32> ToArrayIndex() const;
2190 class V8_EXPORT Uint32 : public Integer {
2194 Uint32();
/external/deqp/modules/glshared/
DglsShaderExecUtil.cpp504 … vertexArrays.push_back(glu::va::Uint32(symbol.name, vecSize, numValues, 0, (const deUint32*)ptr)); in execute()
749 vertexArrays.push_back(glu::va::Uint32(attribName, vecSize, numValues, 0, (const deUint32*)ptr)); in execute()
/external/v8/
DChangeLog6779 Added missing implementation of Uint32::Value and Value::IsUint32
/external/v8/test/cctest/
Dtest-api.cc8372 v8::Handle<v8::Uint32> index = str->ToArrayIndex(); in THREADED_TEST()