/third_party/node/test/parallel/ |
H A D | test-buffer-indexof.js | 222 let index = twoByteString.indexOf('\u0391', 0, 'ucs2'); 223 assert.strictEqual(index, 2, `Alpha - at index ${index}`); 224 index = twoByteString.indexOf('\u03a3', 0, 'ucs2'); 225 assert.strictEqual(index, 4, `First Sigma - at index ${index}`); 226 index = twoByteString.indexOf('\u03a3', 6, 'ucs2'); 227 assert.strictEqual(index, [all...] |
/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_print.c | 49 agx_print_index(agx_index index, FILE *fp) in agx_print_index() argument 51 switch (index.type) { in agx_print_index() 57 if (index.cache) in agx_print_index() 60 if (index.discard) in agx_print_index() 63 if (index.kill) in agx_print_index() 66 fprintf(fp, "%u", index.value); in agx_print_index() 70 fprintf(fp, "#%u", index.value); in agx_print_index() 74 agx_print_sized('u', index.value, index.size, fp); in agx_print_index() 78 agx_print_sized('r', index in agx_print_index() [all...] |
/kernel/linux/linux-5.10/drivers/clk/sprd/ |
H A D | pll.c | 39 sprd_pll_read(const struct sprd_pll *pll, u8 index) in sprd_pll_read() argument 44 if (WARN_ON(index >= pll->regs_num)) in sprd_pll_read() 47 regmap_read(common->regmap, common->reg + index * 4, &val); in sprd_pll_read() 53 sprd_pll_write(const struct sprd_pll *pll, u8 index, in sprd_pll_write() argument 60 if (WARN_ON(index >= pll->regs_num)) in sprd_pll_write() 63 offset = common->reg + index * 4; in sprd_pll_write() 71 u32 shift, mask, index, refin_id = 3; in pll_get_refin() local 75 index = pindex(pll, PLL_REFIN); in pll_get_refin() 78 refin_id = (sprd_pll_read(pll, index) & mask) >> shift; in pll_get_refin() 153 u32 mask, shift, width, ibias_val, index; in _sprd_pll_set_rate() local [all...] |
/kernel/linux/linux-6.6/drivers/clk/sprd/ |
H A D | pll.c | 39 sprd_pll_read(const struct sprd_pll *pll, u8 index) in sprd_pll_read() argument 44 if (WARN_ON(index >= pll->regs_num)) in sprd_pll_read() 47 regmap_read(common->regmap, common->reg + index * 4, &val); in sprd_pll_read() 53 sprd_pll_write(const struct sprd_pll *pll, u8 index, in sprd_pll_write() argument 60 if (WARN_ON(index >= pll->regs_num)) in sprd_pll_write() 63 offset = common->reg + index * 4; in sprd_pll_write() 71 u32 shift, mask, index, refin_id = 3; in pll_get_refin() local 75 index = pindex(pll, PLL_REFIN); in pll_get_refin() 78 refin_id = (sprd_pll_read(pll, index) & mask) >> shift; in pll_get_refin() 153 u32 mask, shift, width, ibias_val, index; in _sprd_pll_set_rate() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | aacenc.h | 100 int index[4][8]; ///< front, side, back, lfe member 117 * - index: there are three independent indices for SCE, CPE and LFE; 123 * .index = { { 0, 0 }, { 1 }, { 2 }, }, 124 * (index is 0 for the single SCE but goes from 0 to 2 for the CPEs) 126 * The index order impacts the channel ordering. But is otherwise arbitrary 145 .index = { { 0 }, }, 153 .index = { { 0 }, }, 161 .index = { { 0 },{ 0 },{ 0 },{ 0 } }, 169 .index = { { 0 },{ 0 },{ 0 }, }, 177 .index [all...] |
H A D | tak_parser.c | 34 int index; member 62 while (buf_size || t->index + needed <= pc->index) { in tak_parse() 63 if (buf_size && t->index + TAK_MAX_FRAME_HEADER_BYTES > pc->index) { in tak_parse() 75 for (; t->index + needed <= pc->index; t->index++) { in tak_parse() 76 if (pc->buffer[ t->index ] == 0xFF && in tak_parse() 77 pc->buffer[ t->index in tak_parse() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | operand.cpp | 64 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup() 65 const auto& entry = group.entries[index]; in spvOperandTableNameLookup() 512 std::function<bool(unsigned index)> out; in spvOperandCanBeForwardDeclaredFunction() 538 out = [](unsigned index) { return index != 0; }; in spvOperandCanBeForwardDeclaredFunction() 543 out = [](unsigned index) { return index == 2; }; in spvOperandCanBeForwardDeclaredFunction() 547 out = [](unsigned index) { retur in spvOperandCanBeForwardDeclaredFunction() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | operand.cpp | 64 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup() 65 const auto& entry = group.entries[index]; in spvOperandTableNameLookup() 512 std::function<bool(unsigned index)> out; in spvOperandCanBeForwardDeclaredFunction() 538 out = [](unsigned index) { return index != 0; }; in spvOperandCanBeForwardDeclaredFunction() 543 out = [](unsigned index) { return index == 2; }; in spvOperandCanBeForwardDeclaredFunction() 547 out = [](unsigned index) { retur in spvOperandCanBeForwardDeclaredFunction() [all...] |
/third_party/spirv-tools/source/ |
H A D | operand.cpp | 62 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup() 63 const auto& entry = group.entries[index]; in spvOperandTableNameLookup() 509 std::function<bool(unsigned index)> out; in spvOperandCanBeForwardDeclaredFunction() 535 out = [](unsigned index) { return index != 0; }; in spvOperandCanBeForwardDeclaredFunction() 540 out = [](unsigned index) { return index == 2; }; in spvOperandCanBeForwardDeclaredFunction() 544 out = [](unsigned index) { retur in spvOperandCanBeForwardDeclaredFunction() [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | xarray.h | 288 * If the only non-NULL entry in the array is at index 0, @xa_head is that 347 void *xa_load(struct xarray *, unsigned long index); 348 void *xa_store(struct xarray *, unsigned long index, void *entry, gfp_t); 349 void *xa_erase(struct xarray *, unsigned long index); 352 bool xa_get_mark(struct xarray *, unsigned long index, xa_mark_t); 353 void xa_set_mark(struct xarray *, unsigned long index, xa_mark_t); 354 void xa_clear_mark(struct xarray *, unsigned long index, xa_mark_t); 355 void *xa_find(struct xarray *xa, unsigned long *index, 357 void *xa_find_after(struct xarray *xa, unsigned long *index, 422 * @index 581 xa_store_bh(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp) xa_store_bh() argument 607 xa_store_irq(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp) xa_store_irq() argument 632 xa_erase_bh(struct xarray *xa, unsigned long index) xa_erase_bh() argument 656 xa_erase_irq(struct xarray *xa, unsigned long index) xa_erase_irq() argument 682 xa_cmpxchg(struct xarray *xa, unsigned long index, void *old, void *entry, gfp_t gfp) xa_cmpxchg() argument 709 xa_cmpxchg_bh(struct xarray *xa, unsigned long index, void *old, void *entry, gfp_t gfp) xa_cmpxchg_bh() argument 736 xa_cmpxchg_irq(struct xarray *xa, unsigned long index, void *old, void *entry, gfp_t gfp) xa_cmpxchg_irq() argument 765 xa_insert(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp) xa_insert() argument 794 xa_insert_bh(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp) xa_insert_bh() argument 823 xa_insert_irq(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp) xa_insert_irq() argument 1040 xa_reserve(struct xarray *xa, unsigned long index, gfp_t gfp) xa_reserve() argument 1058 xa_reserve_bh(struct xarray *xa, unsigned long index, gfp_t gfp) xa_reserve_bh() argument 1076 xa_reserve_irq(struct xarray *xa, unsigned long index, gfp_t gfp) xa_reserve_irq() argument 1090 xa_release(struct xarray *xa, unsigned long index) xa_release() argument 1515 xa_get_order(struct xarray *xa, unsigned long index) xa_get_order() argument 1575 xas_set(struct xa_state *xas, unsigned long index) xas_set() argument 1587 xas_set_order(struct xa_state *xas, unsigned long index, unsigned int order) xas_set_order() argument [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ohos/ |
H A D | geocoding_data.pb.h | 218 ::i18n::phonenumbers::PrefixesInfo* mutable_prefixes_info(int index); 222 const ::i18n::phonenumbers::PrefixesInfo& _internal_prefixes_info(int index) const; 225 const ::i18n::phonenumbers::PrefixesInfo& prefixes_info(int index) const; 236 const std::string& languages(int index) const; 237 std::string* mutable_languages(int index); 238 void set_languages(int index, const std::string& value); 239 void set_languages(int index, std::string&& value); 240 void set_languages(int index, const char* value); 241 void set_languages(int index, const char* value, size_t size); 250 const std::string& _internal_languages(int index) cons 1075 mutable_prefixes_info(int index) mutable_prefixes_info() argument 1125 mutable_languages(int index) mutable_languages() argument 1129 set_languages(int index, const std::string& value) set_languages() argument 1133 set_languages(int index, std::string&& value) set_languages() argument 1137 set_languages(int index, const char* value) set_languages() argument 1142 set_languages(int index, const char* value, size_t size) set_languages() argument 1271 mutable_countries_info(int index) mutable_countries_info() argument 1317 set_countries(int index, ::PROTOBUF_NAMESPACE_ID::int32 value) set_countries() argument 1479 set_prefixes(int index, ::PROTOBUF_NAMESPACE_ID::int32 value) set_prefixes() argument 1530 mutable_descriptions(int index) mutable_descriptions() argument 1534 set_descriptions(int index, const std::string& value) set_descriptions() argument 1538 set_descriptions(int index, std::string&& value) set_descriptions() argument 1542 set_descriptions(int index, const char* value) set_descriptions() argument 1547 set_descriptions(int index, const char* value, size_t size) set_descriptions() argument 1628 set_lengths(int index, ::PROTOBUF_NAMESPACE_ID::int32 value) set_lengths() argument 1711 mutable_language_codes(int index) mutable_language_codes() argument 1715 set_language_codes(int index, const std::string& value) set_language_codes() argument 1719 set_language_codes(int index, std::string&& value) set_language_codes() argument 1723 set_language_codes(int index, const char* value) set_language_codes() argument 1728 set_language_codes(int index, const char* value, size_t size) set_language_codes() argument 1817 mutable_country_languages(int index) mutable_country_languages() argument 1821 set_country_languages(int index, const std::string& value) set_country_languages() argument 1825 set_country_languages(int index, std::string&& value) set_country_languages() argument 1829 set_country_languages(int index, const char* value) set_country_languages() argument 1834 set_country_languages(int index, const char* value, size_t size) set_country_languages() argument 1919 set_country_codes(int index, ::PROTOBUF_NAMESPACE_ID::int32 value) set_country_codes() argument [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | Utf8.java | 152 * range of bytes to be checked extends from index {@code index}, inclusive, to {@code limit}, 155 * <p>This is a convenience method, equivalent to {@code partialIsValidUtf8(bytes, index, limit) 158 public static boolean isValidUtf8(byte[] bytes, int index, int limit) { in isValidUtf8() argument 159 return processor.isValidUtf8(bytes, index, limit); in isValidUtf8() 164 * sequence. The range of bytes to be checked extends from index {@code index}, inclusive, to 175 public static int partialIsValidUtf8(int state, byte[] bytes, int index, int limit) { in partialIsValidUtf8() argument 176 return processor.partialIsValidUtf8(state, bytes, index, limit); in partialIsValidUtf8() 193 private static int incompleteStateFor(byte[] bytes, int index, in argument 207 incompleteStateFor( final ByteBuffer buffer, final int byte1, final int index, final int remaining) incompleteStateFor() argument 226 UnpairedSurrogateException(int index, int length) UnpairedSurrogateException() argument 319 partialIsValidUtf8(int state, ByteBuffer buffer, int index, int limit) partialIsValidUtf8() argument 328 decodeUtf8(ByteBuffer buffer, int index, int size) decodeUtf8() argument 338 decodeUtf8(byte[] bytes, int index, int size) decodeUtf8() argument 368 estimateConsecutiveAscii(ByteBuffer buffer, int index, int limit) estimateConsecutiveAscii() argument 389 isValidUtf8(byte[] bytes, int index, int limit) isValidUtf8() argument 406 partialIsValidUtf8(int state, byte[] bytes, int index, int limit) partialIsValidUtf8() argument 416 isValidUtf8(ByteBuffer buffer, int index, int limit) isValidUtf8() argument 426 partialIsValidUtf8( final int state, final ByteBuffer buffer, int index, final int limit) partialIsValidUtf8() argument 438 partialIsValidUtf8Direct( final int state, final ByteBuffer buffer, int index, final int limit) partialIsValidUtf8Direct() argument 446 partialIsValidUtf8Default( final int state, final ByteBuffer buffer, int index, final int limit) partialIsValidUtf8Default() argument 540 partialIsValidUtf8(final ByteBuffer buffer, int index, final int limit) partialIsValidUtf8() argument 616 decodeUtf8(byte[] bytes, int index, int size) decodeUtf8() argument 624 decodeUtf8(ByteBuffer buffer, int index, int size) decodeUtf8() argument 636 decodeUtf8Direct(ByteBuffer buffer, int index, int size) decodeUtf8Direct() argument 643 decodeUtf8Default(ByteBuffer buffer, int index, int size) decodeUtf8Default() argument 862 partialIsValidUtf8(int state, byte[] bytes, int index, int limit) partialIsValidUtf8() argument 950 partialIsValidUtf8Direct(int state, ByteBuffer buffer, int index, int limit) partialIsValidUtf8Direct() argument 956 decodeUtf8(byte[] bytes, int index, int size) decodeUtf8() argument 1031 decodeUtf8Direct(ByteBuffer buffer, int index, int size) decodeUtf8Direct() argument 1095 partialIsValidUtf8(byte[] bytes, int index, int limit) partialIsValidUtf8() argument 1105 partialIsValidUtf8NonAscii(byte[] bytes, int index, int limit) partialIsValidUtf8NonAscii() argument 1176 partialIsValidUtf8(int state, byte[] bytes, final int index, final int limit) partialIsValidUtf8() argument 1271 partialIsValidUtf8Direct( final int state, ByteBuffer buffer, final int index, final int limit) partialIsValidUtf8Direct() argument 1368 decodeUtf8(byte[] bytes, int index, int size) decodeUtf8() argument 1443 decodeUtf8Direct(ByteBuffer buffer, int index, int size) decodeUtf8Direct() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Trie2_16.java | 75 // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index. in get() 76 // 16 bit data is stored in the index array itself. in get() 77 ix = index[codePoint >> UTRIE2_SHIFT_2]; in get() 79 value = index[ix]; in get() 83 // Lead Surrogate Code Point. A Separate index section is stored for in get() 85 // The main index has the code unit data. in get() 89 ix = index[UTRIE2_LSCP_INDEX_2_OFFSET + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2)]; in get() 91 value = index[ix]; in get() 97 ix = index[i in get() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Trie2_16.java | 77 // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index. in get() 78 // 16 bit data is stored in the index array itself. in get() 79 ix = index[codePoint >> UTRIE2_SHIFT_2]; in get() 81 value = index[ix]; in get() 85 // Lead Surrogate Code Point. A Separate index section is stored for in get() 87 // The main index has the code unit data. in get() 91 ix = index[UTRIE2_LSCP_INDEX_2_OFFSET + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2)]; in get() 93 value = index[ix]; in get() 99 ix = index[i in get() [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-register-frame-array.h | 22 // The first local is at index zero, parameters are behind it with in RegisterFrameArray() 31 DCHECK_LT(last_param.index(), 0); in RegisterFrameArray() 33 info.zone()->NewArray<T>(last_local.index() - last_param.index() + 1); in RegisterFrameArray() 36 // Zone-allocated array. Parameters are at a negative index, so we have to in RegisterFrameArray() 38 frame_start_ = frame - last_param.index(); in RegisterFrameArray() 60 end = last_local.index(); in CopyFrom() 63 for (int index = last_param.index(); index < in CopyFrom() [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-register.cc | 40 Register Register::FromParameterIndex(int index) { in FromParameterIndex() argument 41 DCHECK_GE(index, 0); in FromParameterIndex() 42 int register_index = kFirstParamRegisterIndex - index; in FromParameterIndex() 49 return kFirstParamRegisterIndex - index(); in ToParameterIndex() 57 return index() == kFunctionClosureRegisterIndex; in is_function_closure() 65 return index() == kCurrentContextRegisterIndex; in is_current_context() 73 return index() == kBytecodeArrayRegisterIndex; in is_bytecode_array() 81 return index() == kBytecodeOffsetRegisterIndex; in is_bytecode_offset() 107 if (reg1.index() + 1 != reg2.index()) { in AreContiguous() [all...] |
/third_party/libexif/contrib/c++/ |
H A D | exif_module.cxx | 55 object component(long index) const in component() 60 return object(getByte(index)); in component() 62 return object(getShort(index)); in component() 64 return object(getLong(index)); in component() 66 return object(getSLong(index)); in component() 68 return object(getRational(index)); in component() 70 return object(getSRational(index)); in component() 95 Type extractComponent(unsigned int index, object value, in extractComponent() 107 void setComponent(unsigned int index, object value) in setComponent() 110 + index * exif_format_get_siz in setComponent() 203 ExifTag index= xtag(); entry() local 216 int index= xint(); entry() local 265 ExifIfd index= xifd(); ifdContent() local 275 int index= xint(); ifdContent() local [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | Trie.java | 51 // The index *after* the last prefix was added. 52 private final int index; field in Trie.Span 56 this.index = 0; in Span() 60 private Span(int index, String prefix) { in Span() argument 61 checkArgument(index >= 0, "bad index: %s", index); in Span() 63 checkState(index + prefix.length() <= spanBytes.length, "span too long"); in Span() 65 spanBytes[index++] = '*'; in Span() 71 spanBytes[index in Span() [all...] |
/third_party/mesa3d/src/egl/main/ |
H A D | egldispatchstubs.c | 69 int index = FindProcIndex(name); in __eglSetDispatchIndex() local 70 __EGL_DISPATCH_FUNC_INDICES[index] = dispatchIndex; in __eglSetDispatchIndex() 75 int index = FindProcIndex(name); in __eglDispatchFindDispatchFunction() local 76 return (void *) __EGL_DISPATCH_FUNCS[index]; in __eglDispatchFindDispatchFunction() 80 int index, EGLint errorCode) in FetchVendorFunc() 85 func = exports->fetchDispatchEntry(vendor, __EGL_DISPATCH_FUNC_INDICES[index]); in FetchVendorFunc() 94 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); in FetchVendorFunc() 102 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); in FetchVendorFunc() 109 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByCurrent(int index) in __eglDispatchFetchByCurrent() argument 118 return FetchVendorFunc(vendor, index, EGL_SUCCES in __eglDispatchFetchByCurrent() 79 FetchVendorFunc(__EGLvendorInfo *vendor, int index, EGLint errorCode) FetchVendorFunc() argument 121 __eglDispatchFetchByDisplay(EGLDisplay dpy, int index) __eglDispatchFetchByDisplay() argument 130 __eglDispatchFetchByDevice(EGLDeviceEXT dev, int index) __eglDispatchFetchByDevice() argument [all...] |
/third_party/node/deps/npm/node_modules/spdx-expression-parse/ |
H A D | scan.js | 9 var index = 0 12 return index < source.length 17 // the index is incremented. Otherwise `undefined` is returned. 20 var chars = source.slice(index) 23 index += match[0].length 27 if (source.indexOf(value, index) === index) { 28 index += value.length 48 if (string === '+' && index > 1 && source[index [all...] |
/kernel/linux/linux-5.10/drivers/cpuidle/ |
H A D | cpuidle-powernv.c | 51 int index) in get_snooze_timeout() 58 for (i = index + 1; i < drv->state_count; i++) { in get_snooze_timeout() 70 int index) in snooze_loop() 78 snooze_exit_time = get_tb() + get_snooze_timeout(dev, drv, index); in snooze_loop() 100 return index; in snooze_loop() 105 int index) in nap_loop() 109 return index; in nap_loop() 116 int index) in fastsleep_loop() 122 return index; in fastsleep_loop() 136 return index; in fastsleep_loop() 49 get_snooze_timeout(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) get_snooze_timeout() argument 68 snooze_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) snooze_loop() argument 103 nap_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) nap_loop() argument 114 fastsleep_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) fastsleep_loop() argument 140 stop_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) stop_loop() argument 227 add_powernv_state(int index, const char *name, unsigned int flags, int (*idle_fn)(struct cpuidle_device *, struct cpuidle_driver *, int), unsigned int target_residency, unsigned int exit_latency, u64 psscr_val, u64 psscr_mask) add_powernv_state() argument [all...] |
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | CompoundTransliterator.java | 135 * @param idSplitPoint the index into id at which the 238 * Returns the transliterator at the given index in this chain. 239 * @param index index into chain, from 0 to <code>getCount() - 1</code> 240 * @return transliterator at the given index 242 public Transliterator getTransliterator(int index) { in getTransliterator() argument 243 return trans[index]; in getTransliterator() 345 Position index, boolean incremental) { in handleTransliterate() 347 * initial cursor index, but with the limit index a in handleTransliterate() 344 handleTransliterate(Replaceable text, Position index, boolean incremental) handleTransliterate() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | CompoundTransliterator.java | 136 * @param idSplitPoint the index into id at which the 239 * Returns the transliterator at the given index in this chain. 240 * @param index index into chain, from 0 to <code>getCount() - 1</code> 241 * @return transliterator at the given index 243 public Transliterator getTransliterator(int index) { in getTransliterator() argument 244 return trans[index]; in getTransliterator() 346 Position index, boolean incremental) { in handleTransliterate() 348 * initial cursor index, but with the limit index a in handleTransliterate() 345 handleTransliterate(Replaceable text, Position index, boolean incremental) handleTransliterate() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir_liveness.c | 31 range_include(struct live_def *def, unsigned index) in range_include() argument 33 if (def->live_start > index) in range_include() 34 def->live_start = index; in range_include() 35 if (def->live_end < index) in range_include() 36 def->live_end = index; in range_include() 45 unsigned index; /* current live index */ member 48 unsigned *live_map; /* to map ssa/reg index into defs array */ 103 range_include(&state->defs[i], state->index); in set_src_live() 132 block_live_index[block->index] in etna_live_defs() 208 unsigned index = state.index; etna_live_defs() local [all...] |
/third_party/pulseaudio/src/pulsecore/filter/ |
H A D | lfe-filter.c | 34 int64_t index; member 49 int64_t index; member 109 f->index += samples; in process_block() 122 if (s->index + (int64_t) (s->chunk.length / pa_frame_size(&f->ss) + f->maxrewind) < f->index) in pa_lfe_filter_process() 136 s->chunk.index = 0; in pa_lfe_filter_process() 140 s->index = f->index; in pa_lfe_filter_process() 155 f->index = 0; in pa_lfe_filter_update_rate() 172 f->index in pa_lfe_filter_rewind() [all...] |