/third_party/node/deps/v8/src/builtins/ |
H A D | accessors.cc | 18 #include "src/objects/field-index-inl.h" 57 FieldIndex* index) { in CheckForName() 59 *index = FieldIndex::ForInObjectOffset(offset, encoding); in CheckForName() 68 Handle<Name> name, FieldIndex* index) { in IsJSObjectFieldAccessor() 77 JSArray::kLengthOffset, FieldIndex::kTagged, index); in IsJSObjectFieldAccessor() 81 String::kLengthOffset, FieldIndex::kWord32, index); in IsJSObjectFieldAccessor() 54 CheckForName(Isolate* isolate, Handle<Name> name, Handle<String> property_name, int offset, FieldIndex::Encoding encoding, FieldIndex* index) CheckForName() argument 67 IsJSObjectFieldAccessor(Isolate* isolate, Handle<Map> map, Handle<Name> name, FieldIndex* index) IsJSObjectFieldAccessor() argument
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-ir.cc | 400 source().index(), in AllocateVreg() 464 __ LoadRoot(reg, index()); in GenerateCode() 468 os << "(" << RootsTable::name(index()) << ")"; in PrintParams() 538 // << ", field index = " << in GenerateCode() 676 __ Move(D::GetRegisterParameter(D::kSlot), Immediate(feedback().index())); in GenerateCode() 697 __ Move(D::GetRegisterParameter(D::kSlot), Immediate(feedback().index())); in GenerateCode()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.cc | 440 for (size_t index = 1; index < info.stack.size(); ++index) { in Print() 442 indent + 10, "", info.stack[index].script_id, in Print() 443 info.stack[index].position); in Print()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
H A D | dd_context.c | 50 unsigned index) in dd_context_create_query() 55 query = pipe->create_query(pipe, query_type, index); in dd_context_create_query() 362 enum pipe_shader_type shader, uint index, in dd_context_set_constant_buffer() 369 safe_memcpy(&dctx->draw_state.constant_buffers[shader][index], in dd_context_set_constant_buffer() 371 pipe->set_constant_buffer(pipe, shader, index, take_ownership, constant_buffer); in dd_context_set_constant_buffer() 49 dd_context_create_query(struct pipe_context *_pipe, unsigned query_type, unsigned index) dd_context_create_query() argument 361 dd_context_set_constant_buffer(struct pipe_context *_pipe, enum pipe_shader_type shader, uint index, bool take_ownership, const struct pipe_constant_buffer *constant_buffer) dd_context_set_constant_buffer() argument
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_bufmgr.c | 247 /* Calculating the index based on the row and column. */ in bucket_for_size() 248 const unsigned index = (row * 4) + (col - 1); in bucket_for_size() local 250 return (index < bufmgr->num_buckets) ? in bucket_for_size() 251 &bufmgr->cache_bucket[index] : NULL; in bucket_for_size() 429 bo->index = -1; in bo_alloc_internal() 510 bo->index = -1; in crocus_bo_create_userptr()
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | app_settings.rs | 32 .arg(Arg::new("test").required(true).index(1)) in sub_command_negate_required() 42 .arg(Arg::new("test").required(true).index(1)) in sub_command_negate_required_2() 83 .arg(Arg::new("test").index(1)) in arg_required_else_help() 98 .arg(Arg::new("test").index(1).required(true)) in arg_required_else_help_over_req_arg() 284 .arg(Arg::new("test").required(true).index(1)) in no_bin_name()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Device.cpp | 299 void Device::setRenderTarget(int index, egl::Image *renderTarget, unsigned int layer) in setRenderTarget() argument 306 if(this->renderTarget[index]) in setRenderTarget() 308 this->renderTarget[index]->release(); in setRenderTarget() 311 this->renderTarget[index] = renderTarget; in setRenderTarget() 313 Renderer::setRenderTarget(index, renderTarget, layer); in setRenderTarget()
|
/third_party/python/Modules/_ctypes/ |
H A D | cfield.c | 35 * Expects the size, index and offset for the current field in *psize and 47 PyCField_FromDesc(PyObject *desc, Py_ssize_t index, in PyCField_FromDesc() argument 138 self->index = index; in PyCField_FromDesc() 219 self->index, self->size, ptr); in PyCField_set() 237 self->index, self->size, src->b_ptr + self->offset); in PyCField_get()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_mosaic_info.cpp | 1178 for (uint32 index = 0; index < fInfo.fColorPlanes; index++) 1181 if (key == fInfo.fCFAPlaneColor [index]) 1184 fFilterColor [r] [c] = index;
|
H A D | dng_shared.cpp | 2547 for (uint32 index = 0; index < tagCount; index++) in Parse_ifd0() 2555 printf ("\nExtraCameraProfile [%u]:\n\n", (unsigned) index); in Parse_ifd0() 2561 stream.SetReadPosition (tagOffset + index * 4); in Parse_ifd0()
|
/third_party/protobuf/src/google/protobuf/compiler/python/ |
H A D | python_generator.cc | 638 m["index"] = StrCat(descriptor.index()); in PrintServiceDescriptor() 644 "index=$index$,\n" in PrintServiceDescriptor() 660 m["index"] = StrCat(method->index()); in PrintServiceDescriptor() 670 "index=$index$,\n" in PrintServiceDescriptor() 798 m["index"] = StrCat(desc->index()); in PrintDescriptor() [all...] |
/third_party/python/Lib/test/ |
H A D | test_hashlib.py | 933 index = 0 934 while index < len(data): 935 hasher.update(data[index:index + chunk_size]) 936 index += chunk_size
|
/third_party/pulseaudio/src/modules/ |
H A D | module-virtual-surround-sink.c | 432 chunk->index = 0; in sink_input_pop_cb() 1084 size_t index = i * 2 + ear; in pa__init() local 1091 p = fftwf_plan_dft_r2c_1d(fftlen, impulse_temp, u->f_ir[index], FFTW_ESTIMATE); in pa__init() 1096 pa_log("fftw plan creation failed for %s ear speaker index %d", (ear == 0) ? "left" : "right", i); in pa__init() 1104 size_t index = i * 2 + ear; in pa__init() local 1110 p = fftwf_plan_dft_r2c_1d(fftlen, impulse_temp, u->f_ir[index], FFTW_ESTIMATE); in pa__init() 1115 pa_log("fftw plan creation failed for %s ear speaker index %d", (ear == 0) ? "left" : "right", i); in pa__init()
|
/third_party/rust/crates/serde/test_suite/tests/ |
H A D | test_annotations.rs | 2917 Struct { index: u32, value: u32 }, 2973 index: 0, in struct_from_seq() 2982 Token::U32(0), // index in struct_from_seq() 3000 index: 0, in struct_from_map() 3012 Token::Str("index"), in struct_from_map() 3043 Struct { index: u32, value: u32 }, 3057 index: 0, in struct_() 3075 Token::Str("index"), in struct_()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShaderSubroutineTests.cpp | 69 * @param index <index> parameter 73 void Utils::buffer::bindRange(glw::GLenum target, glw::GLuint index, glw::GLintptr offset, glw::GLsizeiptr size) in bindRange() argument 77 gl.bindBufferRange(target, index, m_id, offset, size); in bindRange() 436 /** Get subroutine index 445 GLuint index = -1; in getSubroutineIndex() local 447 index = gl.getSubroutineIndex(m_program_object_id, shader_stage, subroutine_name); in getSubroutineIndex() 450 if (GL_INVALID_INDEX == index) in getSubroutineIndex() 458 return index; in getSubroutineIndex() 2008 gl.getActiveSubroutineName(m_po_id, GL_VERTEX_SHADER, 0, /* index */ in verifyGLGetActiveSubroutineNameFunctionality() 3079 GLuint index = gl.getProgramResourceIndex(program_id, program_interface, resource_name); checkProgramResourceiv() local 3152 checkActiveSubroutineUniformiv(GLuint program_id, GLuint index, GLenum pname, GLint expected) const checkActiveSubroutineUniformiv() argument 3190 GLuint index = gl.getProgramResourceIndex(program_id, program_interface, resource_name); getProgramResourceIndex() local 3217 GLuint index = -1; getSubroutineIndex() local 3384 GLuint index = getProgramResourceIndex(program_id, GL_VERTEX_SUBROUTINE_UNIFORM, uniform_name); inspectProgramResourceiv() local 10135 glw::GLuint index = 0; iterate() local 12293 GLuint index = 0; test() local [all...] |
/third_party/python/Python/ |
H A D | ceval.c | 1507 assert(cache->index < dict->ma_keys->dk_nentries); \ 1508 PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dict->ma_keys) + cache->index; \ 2177 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0]; local 2178 DEOPT_IF(index >= PyList_GET_SIZE(list), BINARY_SUBSCR); 2180 PyObject *res = PyList_GET_ITEM(list, index); 2202 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0]; local 2203 DEOPT_IF(index >= PyTuple_GET_SIZE(tuple), BINARY_SUBSCR); 2205 PyObject *res = PyTuple_GET_ITEM(tuple, index); 2343 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0]; local 2344 // Ensure index < le 3618 Py_ssize_t index = cache->index; global() local 6087 get_exception_handler(PyCodeObject *code, int index, int *level, int *handler, int *lasti) global() argument [all...] |
/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/include/ |
H A D | napi_hisysevent_adapter.h | 106 size_t paramIndex = static_cast<size_t>(param.index()); in AppendParams()
|
/base/account/os_account/services/accountmgr/include/bundle_manager_adapter/ |
H A D | bundle_manager_adapter_proxy.h | 101 bool ParseStr(const char *buf, const int itemLen, int index, std::string &result);
|
/base/powermgr/battery_statistics/services/native/include/ |
H A D | cpu_time_reader.h | 59 std::vector<int64_t>>& increments, std::map<uint32_t, std::vector<int64_t>>& speedTime, int32_t index,
|
/base/notification/common_event_service/services/include/ |
H A D | common_event_control_manager.h | 150 bool NotifyOrderedEvent(std::shared_ptr<OrderedEventRecord> &eventRecordPtr, size_t index);
|
/base/security/access_token/services/accesstokenmanager/main/cpp/include/permission/ |
H A D | temp_permission_observer.h | 96 void ModifyAppState(AccessTokenID tokenID, int32_t index, bool flag);
|
/base/sensors/sensor/vibration_convert/core/algorithm/peak_finder/include/ |
H A D | peak_finder.h | 114 * @return Return the index of peaks.
155 MountainPosition &mountainPosition, int32_t &index);
|
/base/sensors/sensor/vibration_convert/core/utils/include/ |
H A D | utils.h | 66 uint32_t ReverseBits(uint32_t index, uint32_t numBits);
|
/base/telephony/ril_adapter/services/vendor/include/ |
H A D | at_sim.h | 99 void ReqSetActiveSim(const ReqDataInfo *requestInfo, int32_t index, int32_t enable);
|
/base/telephony/sms_mms/services/sms/include/ |
H A D | sms_base_message.h | 98 virtual void SetIndexOnSim(int32_t index);
|