/kernel/linux/linux-6.6/drivers/net/ethernet/renesas/ |
H A D | rswitch.c | 120 iowrite32(priv->rdev[i]->rx_queue->index, in rswitch_fwd_init() 122 iowrite32(BIT(priv->gwca.index), priv->addr + FWPBFC(i)); in rswitch_fwd_init() 126 iowrite32(FWPC0_DEFAULT, priv->addr + FWPC0(priv->gwca.index)); in rswitch_fwd_init() 127 iowrite32(FWPC1_DDE, priv->addr + FWPC1(priv->gwca.index)); in rswitch_fwd_init() 128 iowrite32(0, priv->addr + FWPBFC(priv->gwca.index)); in rswitch_fwd_init() 129 iowrite32(GENMASK(RSWITCH_NUM_PORTS - 1, 0), priv->addr + FWPBFC(priv->gwca.index)); in rswitch_fwd_init() 138 if (!rswitch_agent_clock_is_enabled(priv->addr, priv->gwca.index)) in rswitch_gwca_change_mode() 139 rswitch_agent_clock_ctrl(priv->addr, priv->gwca.index, 1); in rswitch_gwca_change_mode() 146 rswitch_agent_clock_ctrl(priv->addr, priv->gwca.index, 0); in rswitch_gwca_change_mode() 188 static void rswitch_enadis_data_irq(struct rswitch_private *priv, int index, boo argument 195 rswitch_ack_data_irq(struct rswitch_private *priv, int index) rswitch_ack_data_irq() argument 204 int index = cur ? gq->cur : gq->dirty; rswitch_next_queue_index() local 235 int i, index; rswitch_gwca_queue_alloc_skb() local 404 int i, index; rswitch_gwca_ts_queue_fill() local 420 int i, index; rswitch_gwca_queue_ext_ts_fill() local 539 int index; rswitch_gwca_get() local 585 rswitch_txdmac_init(struct rswitch_private *priv, int index) rswitch_txdmac_init() argument 619 rswitch_rxdmac_init(struct rswitch_private *priv, int index) rswitch_rxdmac_init() argument 853 int i, index, bit; rswitch_data_irq() local 1145 u32 index; rswitch_get_port_node() local 1693 rswitch_etha_init(struct rswitch_private *priv, int index) rswitch_etha_init() argument 1709 rswitch_device_alloc(struct rswitch_private *priv, int index) rswitch_device_alloc() argument 1780 rswitch_device_free(struct rswitch_private *priv, int index) rswitch_device_free() argument [all...] |
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-array-object.c | 188 int32_t index = (int32_t) (length - 1); in ecma_fast_array_convert_to_normal() local 190 while (index >= 0) in ecma_fast_array_convert_to_normal() 192 if (ecma_is_value_array_hole (values_p[index])) in ecma_fast_array_convert_to_normal() 194 index--; in ecma_fast_array_convert_to_normal() 207 JERRY_ASSERT (index <= ECMA_DIRECT_STRING_MAX_IMM); in ecma_fast_array_convert_to_normal() 209 property_pair_p->names_cp[prop_index] = (jmem_cpointer_t) index; in ecma_fast_array_convert_to_normal() 214 property_pair_p->values[prop_index].value = values_p[index]; in ecma_fast_array_convert_to_normal() 216 index--; in ecma_fast_array_convert_to_normal() 230 * @return false - If the property name is not array index, or the requested index t 236 ecma_fast_array_set_property(ecma_object_t *object_p, uint32_t index, ecma_value_t value) ecma_fast_array_set_property() argument 385 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_array_object_delete_property() local 833 uint32_t index = ecma_string_get_property_index (current_prop_p->types[i], ecma_delete_array_properties() local 884 uint32_t index = ecma_string_get_property_index (current_prop_p->types[i], ecma_delete_array_properties() local 1129 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_op_array_object_define_own_property() local 1149 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_op_array_object_define_own_property() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libGL/ |
H A D | entry_points_gl_3_autogen.h | 22 ANGLE_EXPORT void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer); 24 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); 55 GL_ColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); 59 ANGLE_EXPORT void GL_APIENTRY GL_Disablei(GLenum target, GLuint index); 60 ANGLE_EXPORT void GL_APIENTRY GL_Enablei(GLenum target, GLuint index); 95 ANGLE_EXPORT void GL_APIENTRY GL_GetBooleani_v(GLenum target, GLuint index, GLboolean *data); 101 ANGLE_EXPORT void GL_APIENTRY GL_GetIntegeri_v(GLenum target, GLuint index, GLint *data); 105 ANGLE_EXPORT const GLubyte *GL_APIENTRY GL_GetStringi(GLenum name, GLuint index); 109 GLuint index, 116 ANGLE_EXPORT void GL_APIENTRY GL_GetVertexAttribIiv(GLuint index, GLenu [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | UnsafeUtil.java | 176 static byte getByte(byte[] target, long index) { in getByte() argument 177 return MEMORY_ACCESSOR.getByte(target, BYTE_ARRAY_BASE_OFFSET + index); in getByte() 180 static void putByte(byte[] target, long index, byte value) { in putByte() argument 181 MEMORY_ACCESSOR.putByte(target, BYTE_ARRAY_BASE_OFFSET + index, value); in putByte() 184 static int getInt(int[] target, long index) { in getInt() argument 185 return MEMORY_ACCESSOR.getInt(target, INT_ARRAY_BASE_OFFSET + (index * INT_ARRAY_INDEX_SCALE)); in getInt() 188 static void putInt(int[] target, long index, int value) { in putInt() argument 189 MEMORY_ACCESSOR.putInt(target, INT_ARRAY_BASE_OFFSET + (index * INT_ARRAY_INDEX_SCALE), value); in putInt() 192 static long getLong(long[] target, long index) { in getLong() argument 194 target, LONG_ARRAY_BASE_OFFSET + (index * LONG_ARRAY_INDEX_SCAL in getLong() 197 putLong(long[] target, long index, long value) putLong() argument 202 getBoolean(boolean[] target, long index) getBoolean() argument 207 putBoolean(boolean[] target, long index, boolean value) putBoolean() argument 212 getFloat(float[] target, long index) getFloat() argument 217 putFloat(float[] target, long index, float value) putFloat() argument 222 getDouble(double[] target, long index) getDouble() argument 227 putDouble(double[] target, long index, double value) putDouble() argument 232 getObject(Object[] target, long index) getObject() argument 237 putObject(Object[] target, long index, Object value) putObject() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
H A D | vga.h | 11 u8 nvkm_rdvgas(struct nvkm_device *, int head, u8 index); 12 void nvkm_wrvgas(struct nvkm_device *, int head, u8 index, u8 value); 15 u8 nvkm_rdvgag(struct nvkm_device *, int head, u8 index); 16 void nvkm_wrvgag(struct nvkm_device *, int head, u8 index, u8 value); 19 u8 nvkm_rdvgac(struct nvkm_device *, int head, u8 index); 20 void nvkm_wrvgac(struct nvkm_device *, int head, u8 index, u8 value); 23 u8 nvkm_rdvgai(struct nvkm_device *, int head, u16 port, u8 index); 24 void nvkm_wrvgai(struct nvkm_device *, int head, u16 port, u8 index, u8 value);
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
H A D | vga.h | 11 u8 nvkm_rdvgas(struct nvkm_device *, int head, u8 index); 12 void nvkm_wrvgas(struct nvkm_device *, int head, u8 index, u8 value); 15 u8 nvkm_rdvgag(struct nvkm_device *, int head, u8 index); 16 void nvkm_wrvgag(struct nvkm_device *, int head, u8 index, u8 value); 19 u8 nvkm_rdvgac(struct nvkm_device *, int head, u8 index); 20 void nvkm_wrvgac(struct nvkm_device *, int head, u8 index, u8 value); 23 u8 nvkm_rdvgai(struct nvkm_device *, int head, u16 port, u8 index); 24 void nvkm_wrvgai(struct nvkm_device *, int head, u16 port, u8 index, u8 value);
|
/kernel/liteos_m/testsuites/sample/kernel/lms/ |
H A D | It_los_lms_004.c | 41 UINT32 index;
in TestCase() local 45 index = 0;
in TestCase() 47 for (i = 2; i < 8; i++, index++) { /* boundary loop from 2 to 8 */
in TestCase() 50 str[index] = (char *)LOS_MemAllocAlign(m_aucSysMem0, size[k], boundary);
in TestCase() 51 ICUNIT_GOTO_NOT_EQUAL(str[index], NULL, str[index], EXIT);
in TestCase() 54 for (i = 0; i < index; i++) {
in TestCase() 61 for (i = 0; i < index; i++) {
in TestCase()
|
/third_party/lzma/CPP/Windows/Control/ |
H A D | ReBar.h | 16 bool InsertBand(int index, LPREBARBANDINFO bandInfo)
in InsertBand() argument 17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, MY_int_TO_WPARAM(index), (LPARAM)bandInfo)); }
in InsertBand() 18 bool SetBandInfo(unsigned index, LPREBARBANDINFO bandInfo)
in SetBandInfo() argument 19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); }
in SetBandInfo() 20 void MaximizeBand(unsigned index, bool ideal)
in MaximizeBand() argument 21 { SendMsg(RB_MAXIMIZEBAND, index, BoolToBOOL(ideal)); }
in MaximizeBand() 28 bool DeleteBand(UINT index)
in DeleteBand() argument 29 { return LRESULTToBool(SendMsg(RB_DELETEBAND, index)); }
in DeleteBand()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wmemset.c | 28 const int index = 20; in wmemset_0100() local 31 wchar_t des[index]; in wmemset_0100() 47 const int index = 10; in wmemset_0200() local 50 wchar_t des[index]; in wmemset_0200() 52 for (int i = 0; i < index; i++) { in wmemset_0200() 66 const int index = 10; in wmemset_0300() local 69 wchar_t des[index]; in wmemset_0300() 71 for (int i = 0; i < index; i++) { in wmemset_0300()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_1d_table.h | 78 int32 index = (int32) y; in Interpolate() local 80 if (index < 0 || index > kTableSize) in Interpolate() 87 DNG_ASSERT (index >= 0 && index <= kTableSize, in Interpolate() 90 real32 z = (real32) index; in Interpolate() 94 return fTable [index ] * (1.0f - fract) + in Interpolate() 95 fTable [index + 1] * ( fract); in Interpolate()
|
/kernel/linux/linux-5.10/drivers/media/platform/exynos4-is/ |
H A D | fimc-is-param.c | 218 unsigned int index = is->config_index; in __is_set_frame_size() local 223 isp = &is->config[index].isp; in __is_set_frame_size() 224 drc = &is->config[index].drc; in __is_set_frame_size() 225 fd = &is->config[index].fd; in __is_set_frame_size() 242 &is->config[index].p_region_index[0])) in __is_set_frame_size() 265 unsigned int index = is->config_index; in __is_set_sensor() local 269 sensor = &is->config[index].sensor; in __is_set_sensor() 270 isp = &is->config[index].isp; in __is_set_sensor() 310 unsigned int index = is->config_index; in __is_set_isp_flash() local 311 struct isp_param *isp = &is->config[index] in __is_set_isp_flash() 322 unsigned int index = is->config_index; __is_set_isp_awb() local 336 unsigned int index = is->config_index; __is_set_isp_effect() local 349 unsigned int index = is->config_index; __is_set_isp_iso() local 363 unsigned int index = is->config_index; __is_set_isp_adjust() local 410 unsigned int index = is->config_index; __is_set_isp_metering() local 445 unsigned int index = is->config_index; __is_set_isp_afc() local 459 unsigned int index = is->config_index; __is_set_drc_control() local 471 unsigned int index = is->config_index; __is_set_fd_control() local 486 unsigned int index = is->config_index; __is_set_fd_config_maxface() local 506 unsigned int index = is->config_index; __is_set_fd_config_rollangle() local 526 unsigned int index = is->config_index; __is_set_fd_config_yawangle() local 546 unsigned int index = is->config_index; __is_set_fd_config_smilemode() local 566 unsigned int index = is->config_index; __is_set_fd_config_blinkmode() local 586 unsigned int index = is->config_index; __is_set_fd_config_eyedetect() local 606 unsigned int index = is->config_index; __is_set_fd_config_mouthdetect() local 626 unsigned int index = is->config_index; __is_set_fd_config_orientation() local 646 unsigned int index = is->config_index; __is_set_fd_config_orientation_val() local 671 unsigned int index; fimc_is_set_initial_params() local [all...] |
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | intel_pmc_core.c | 671 int index, idx, len = 32, bit_mask, arr_size; in pmc_core_lpm_display() local 679 for (index = 0; index < arr_size; index++) { in pmc_core_lpm_display() 680 lpm_regs[index] = pmc_core_reg_read(pmcdev, offset); in pmc_core_lpm_display() 691 for (index = 0; maps[idx][index].name && index < len; index++) { in pmc_core_lpm_display() 692 bit_mask = maps[idx][index] in pmc_core_lpm_display() 714 pmc_core_display_map(struct seq_file *s, int index, int idx, int ip, u8 pf_reg, const struct pmc_bit_map **pf_map) pmc_core_display_map() argument 727 int index, iter, idx, ip = 0; pmc_core_ppfear_show() local 782 int index, err = 0; pmc_core_mphy_pg_show() local 835 int index, err = 0; pmc_core_pll_show() local 1002 int index; pmc_core_ltr_show() local 1038 int index; pmc_core_substate_res_show() local 1082 int index; pmc_core_pkgc_show() local [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/samsung/exynos4-is/ |
H A D | fimc-is-param.c | 218 unsigned int index = is->config_index; in __is_set_frame_size() local 223 isp = &is->config[index].isp; in __is_set_frame_size() 224 drc = &is->config[index].drc; in __is_set_frame_size() 225 fd = &is->config[index].fd; in __is_set_frame_size() 242 &is->config[index].p_region_index[0])) in __is_set_frame_size() 265 unsigned int index = is->config_index; in __is_set_sensor() local 269 sensor = &is->config[index].sensor; in __is_set_sensor() 270 isp = &is->config[index].isp; in __is_set_sensor() 310 unsigned int index = is->config_index; in __is_set_isp_flash() local 311 struct isp_param *isp = &is->config[index] in __is_set_isp_flash() 322 unsigned int index = is->config_index; __is_set_isp_awb() local 336 unsigned int index = is->config_index; __is_set_isp_effect() local 349 unsigned int index = is->config_index; __is_set_isp_iso() local 363 unsigned int index = is->config_index; __is_set_isp_adjust() local 410 unsigned int index = is->config_index; __is_set_isp_metering() local 445 unsigned int index = is->config_index; __is_set_isp_afc() local 459 unsigned int index = is->config_index; __is_set_drc_control() local 471 unsigned int index = is->config_index; __is_set_fd_control() local 486 unsigned int index = is->config_index; __is_set_fd_config_maxface() local 506 unsigned int index = is->config_index; __is_set_fd_config_rollangle() local 526 unsigned int index = is->config_index; __is_set_fd_config_yawangle() local 546 unsigned int index = is->config_index; __is_set_fd_config_smilemode() local 566 unsigned int index = is->config_index; __is_set_fd_config_blinkmode() local 586 unsigned int index = is->config_index; __is_set_fd_config_eyedetect() local 606 unsigned int index = is->config_index; __is_set_fd_config_mouthdetect() local 626 unsigned int index = is->config_index; __is_set_fd_config_orientation() local 646 unsigned int index = is->config_index; __is_set_fd_config_orientation_val() local 671 unsigned int index; fimc_is_set_initial_params() local [all...] |
/third_party/mesa3d/src/amd/addrlib/src/r800/ |
H A D | ciaddrlib.cpp | 499 * Map a tile setting to index if curIndex is invalid, otherwise check if curIndex matches 500 * tile mode/type/info and change the index if needed 502 * Tile index. 509 INT curIndex ///< [in] Current index assigned in HwlSetupTileInfo in HwlPostCheckTileIndex() 512 INT_32 index = curIndex; in HwlPostCheckTileIndex() local 516 index = TileIndexLinearGeneral; in HwlPostCheckTileIndex() 522 // We need to find a new index if either of them is true in HwlPostCheckTileIndex() 526 if ((index == TileIndexInvalid) || in HwlPostCheckTileIndex() 527 (mode != m_tileTable[index].mode) || in HwlPostCheckTileIndex() 528 (macroTiled && pInfo->pipeConfig != m_tileTable[index] in HwlPostCheckTileIndex() 595 HwlSetupTileCfg( UINT_32 bpp, INT_32 index, INT_32 macroModeIndex, ADDR_TILEINFO* pInfo, AddrTileMode* pMode, AddrTileType* pType ) const HwlSetupTileCfg() argument 1262 INT index = TileIndexInvalid; HwlSetupTileInfo() local [all...] |
/kernel/linux/linux-5.10/tools/virtio/ringtest/ |
H A D | virtio_ring_0_9.c | 6 * Partial implementation of virtio 0.9. event index is used for signalling, 25 * (which skips index reads on consumer in favor of looking at 55 /* we do not need to track last avail index 155 unsigned index; in get_buf() local 160 index = ring.used->ring[head].id; in get_buf() 161 if ((index ^ guest.last_used_idx ^ 0x8000) & ~(ring_size - 1)) in get_buf() 165 index &= ring_size - 1; in get_buf() 173 index = head; in get_buf() 176 index = ring.used->ring[head].id; in get_buf() 181 *lenp = ring.desc[index] in get_buf() 202 unsigned index = ring.used->ring[head].id; used_empty() local 262 unsigned index = ring.avail->ring[head & (ring_size - 1)]; avail_empty() local [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | radix-tree.h | 46 * the tree for this index (no matter what level of the tree it is found at). 92 * @index: index of current slot 93 * @next_index: one beyond the last index for this chunk 105 unsigned long index; member 217 int radix_tree_insert(struct radix_tree_root *, unsigned long index, 219 void *__radix_tree_lookup(const struct radix_tree_root *, unsigned long index, 223 unsigned long index); 241 unsigned long index, unsigned int tag); 243 unsigned long index, unsigne 321 radix_tree_iter_lookup(const struct radix_tree_root *root, struct radix_tree_iter *iter, unsigned long index) radix_tree_iter_lookup() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | radix-tree.h | 48 * the tree for this index (no matter what level of the tree it is found at). 94 * @index: index of current slot 95 * @next_index: one beyond the last index for this chunk 107 unsigned long index; member 219 int radix_tree_insert(struct radix_tree_root *, unsigned long index, 221 void *__radix_tree_lookup(const struct radix_tree_root *, unsigned long index, 225 unsigned long index); 243 unsigned long index, unsigned int tag); 245 unsigned long index, unsigne 323 radix_tree_iter_lookup(const struct radix_tree_root *root, struct radix_tree_iter *iter, unsigned long index) radix_tree_iter_lookup() argument [all...] |
/kernel/linux/linux-6.6/tools/virtio/ringtest/ |
H A D | virtio_ring_0_9.c | 6 * Partial implementation of virtio 0.9. event index is used for signalling, 25 * (which skips index reads on consumer in favor of looking at 55 /* we do not need to track last avail index 155 unsigned index; in get_buf() local 160 index = ring.used->ring[head].id; in get_buf() 161 if ((index ^ guest.last_used_idx ^ 0x8000) & ~(ring_size - 1)) in get_buf() 165 index &= ring_size - 1; in get_buf() 173 index = head; in get_buf() 176 index = ring.used->ring[head].id; in get_buf() 181 *lenp = ring.desc[index] in get_buf() 202 unsigned index = ring.used->ring[head].id; used_empty() local 262 unsigned index = ring.avail->ring[head & (ring_size - 1)]; avail_empty() local [all...] |
/third_party/node/deps/v8/include/ |
H A D | v8-context.h | 100 * \param context_snapshot_index The index of the context snapshot to 184 * Gets the embedder data with the given index, which must have been set by a 185 * previous call to SetEmbedderData with the same index. 187 V8_INLINE Local<Value> GetEmbedderData(int index); 198 * Sets the embedder data with the given index, growing the data as 199 * needed. Note that index 0 currently has a special meaning for Chrome's 202 void SetEmbedderData(int index, Local<Value> value); 206 * index, which must have been set by a previous call to 207 * SetAlignedPointerInEmbedderData with the same index. Note that index 345 GetEmbedderData(int index) GetEmbedderData() argument 370 GetAlignedPointerFromEmbedderData(int index) GetAlignedPointerFromEmbedderData() argument 392 GetDataFromSnapshotOnce(size_t index) GetDataFromSnapshotOnce() argument [all...] |
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-context.h | 103 * \param context_snapshot_index The index of the context snapshot to 226 * Gets the embedder data with the given index, which must have been set by a 227 * previous call to SetEmbedderData with the same index. 229 V8_INLINE Local<Value> GetEmbedderData(int index); 240 * Sets the embedder data with the given index, growing the data as 241 * needed. Note that index 0 currently has a special meaning for Chrome's 244 void SetEmbedderData(int index, Local<Value> value); 248 * index, which must have been set by a previous call to 249 * SetAlignedPointerInEmbedderData with the same index. Note that index 394 GetEmbedderData(int index) GetEmbedderData() argument 418 GetAlignedPointerFromEmbedderData(int index) GetAlignedPointerFromEmbedderData() argument 438 GetDataFromSnapshotOnce(size_t index) GetDataFromSnapshotOnce() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | liveness.c | 85 unsigned int index = reg->regalloc_index; in ppir_liveness_instr_srcs() local 91 BITSET_SET(instr->live_internal, index); in ppir_liveness_instr_srcs() 95 bool live = BITSET_TEST(instr->live_set, index); in ppir_liveness_instr_srcs() 101 BITSET_SET(instr->live_set, index); in ppir_liveness_instr_srcs() 105 uint8_t live_mask = get_reg_mask(instr->live_mask, index); in ppir_liveness_instr_srcs() 113 set_reg_mask(instr->live_mask, index, (live_mask | mask)); in ppir_liveness_instr_srcs() 114 BITSET_SET(instr->live_set, index); in ppir_liveness_instr_srcs() 146 unsigned int index = reg->regalloc_index; in ppir_liveness_instr_dest() local 147 bool live = BITSET_TEST(instr->live_set, index); in ppir_liveness_instr_dest() 152 BITSET_SET(last->live_set, index); in ppir_liveness_instr_dest() [all...] |
/third_party/skia/src/sksl/ir/ |
H A D | SkSLIndexExpression.cpp | 21 static bool index_out_of_range(const Context& context, SKSL_INT index, const Expression& base) { in index_out_of_range() argument 22 if (index >= 0 && index < base.type().columns()) { in index_out_of_range() 26 context.fErrors->error(base.fLine, "index " + to_string(index) + " out of range for '" + in index_out_of_range() 55 std::unique_ptr<Expression> index) { in Convert() 59 SKSL_INT arraySize = baseType.convertArraySize(context, std::move(index)); in Convert() 66 // Convert an index expression with an expression inside of it: `arr[a * 3]`. in Convert() 73 if (!index->type().isInteger()) { in Convert() 74 index in Convert() 52 Convert(const Context& context, SymbolTable& symbolTable, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Convert() argument 90 Make(const Context& context, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Make() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SparseBitVector.h | 87 unsigned index() const { 126 /// find_first - Returns the index of the first set bit. 134 /// find_last - Returns the index of the last set bit. 145 /// find_next - Returns the index of the next set bit starting from the 295 if (CurrElementIter->index() == ElementIndex) { 297 } else if (CurrElementIter->index() > ElementIndex) { 299 && ElementIter->index() > ElementIndex) 303 ElementIter->index() < ElementIndex) 345 BitNumber = Iter->index() * ElementSize; 377 BitNumber = Iter->index() * ElementSiz [all...] |
/third_party/libunwind/libunwind/src/unwind/ |
H A D | SetGR.c | 32 _Unwind_SetGR (struct _Unwind_Context *context, int index, in _Unwind_SetGR() argument 36 index = dwarf_to_unw_regnum(index); in _Unwind_SetGR() 38 unw_set_reg (&context->cursor, index, new_value); in _Unwind_SetGR() 40 if (index >= UNW_IA64_GR && index <= UNW_IA64_GR + 127) in _Unwind_SetGR() 42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0); in _Unwind_SetGR()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsAsWinding.cpp | 66 for (int index = 0; index < count; ) { in contains_edge() 67 SkScalar intersectX = (*CurvePointAtT[verb])(pts, weight, tVals[index]).fX; in contains_edge() 69 ++index; in contains_edge() 73 tVals[index] = tVals[--count]; in contains_edge() 78 ++index; in contains_edge() 84 tVals[index] = tVals[--count]; in contains_edge() 87 for (int index = 0; index < count; ++index) { in contains_edge() [all...] |