Home
last modified time | relevance | path

Searched refs:start (Results 2801 - 2825 of 7435) sorted by relevance

1...<<111112113114115116117118119120>>...298

/third_party/ffmpeg/libavcodec/
H A Dhnm4video.c363 uint8_t start, writeoffset; in hnm_update_palette() local
373 start = bytestream2_get_byte(&gb); in hnm_update_palette()
375 if (start == 255 && count == 255) in hnm_update_palette()
379 writeoffset = start; in hnm_update_palette()
H A Dac3enc_template.c69 /* copy last 256 samples of previous frame to the start of the current frame */ in copy_input_samples()
128 /* align start to 16-byte boundary. align length to multiple of 32. in apply_channel_coupling()
129 note: coupling start bin % 4 will always be 1 */ in apply_channel_coupling()
348 int start = ff_ac3_rematrix_band_tab[bnd]; in compute_rematrixing_strategy() local
351 sum_square_butterfly(s, sum, block->mdct_coef[1] + start, in compute_rematrixing_strategy()
352 block->mdct_coef[2] + start, end - start); in compute_rematrixing_strategy()
/third_party/elfutils/libdw/
H A Dcfi.c399 fs->start = loc; in execute_cfi()
499 FDEs using this CIE will start from. */ in cie_cache_initial_state()
520 fs->start = fde->start; in __libdw_frame_at_address()
525 fde->start, address); in __libdw_frame_at_address()
/third_party/ffmpeg/libavformat/
H A Did3v2enc.c299 int len, start, end, ret; in write_chapter() local
304 start = av_rescale_q(ch->start, ch->time_base, time_base); in write_chapter()
309 avio_wb32(dyn_bc, start); in write_chapter()
396 /* start writing */ in ff_id3v2_write_apic()
H A Driffenc.c39 void ff_end_tag(AVIOContext *pb, int64_t start) in ff_end_tag() argument
43 av_assert0((start&1) == 0); in ff_end_tag()
48 avio_seek(pb, start - 4, SEEK_SET); in ff_end_tag()
49 avio_wl32(pb, (uint32_t)(pos - start)); in ff_end_tag()
/third_party/glfw/src/
H A Dcontext.c587 const char* start = extensions; in _glfwStringInExtensionString() local
594 where = strstr(start, string); in _glfwStringInExtensionString()
599 if (where == start || *(where - 1) == ' ') in _glfwStringInExtensionString()
605 start = terminator; in _glfwStringInExtensionString()
/third_party/astc-encoder/Source/
H A Dastcenc_compute_variance.cpp62 size_t start = lc_stride - 1; in brent_kung_prefix_sum() local
65 vfloat4 *da = d + (start * stride); in brent_kung_prefix_sum()
86 size_t start = step + lc_stride - 1; in brent_kung_prefix_sum() local
89 vfloat4 *da = d + (start * stride); in brent_kung_prefix_sum()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
H A DCalendarCalc.java116 start(); in CalendarCalcFrame()
146 * Called to start the applet. You never need to call this method
149 public void start() in start() method in CalendarCalcFrame
368 int start = calendars[index].text.getSelectionStart(); in textChanged()
373 calendars[index].text.select(start,end); in textChanged()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DUConverterAlias.java188 int mid, start, limit; in findConverter()
198 start = 0; in findConverter()
204 mid = (start + limit) / 2; in findConverter()
215 start = mid; in findConverter()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DNumberParserImpl.java313 * @param start
314 * The index into the string at which to start parsing.
320 public void parse(String input, int start, boolean greedy, ParsedNumber result) { in parse() argument
322 assert start >= 0 && start < input.length(); in parse()
325 segment.adjustOffset(start); in parse()
/third_party/icu/icu4c/source/test/intltest/
H A Dformatted_string_builder_test.cpp85 int start = uprv_min(1, str.length()); in testInsertAppendUnicodeString() local
87 sb4.insert(3, str, start, end - start); // UnicodeString uses length instead of end index in testInsertAppendUnicodeString()
88 sb5.insert(3, str, start, end, kUndefinedField, status); in testInsertAppendUnicodeString()
235 assertEquals("Currency start position", str.length(), fp.getBeginIndex()); in testFields()
320 infoln("# log: setup start, data_length %d", data_length); in testInsertOverflow()
H A Dnumberformattesttuple.cpp139 int32_t start = 0; in strToInt() local
143 start = 1; in strToInt()
145 if (start == len) { in strToInt()
150 for (int32_t i = start; i < len; ++i) { in strToInt()
/third_party/icu/icu4c/source/i18n/
H A Dunits_data.cpp237 int32_t start = 0; in binarySearch() local
242 while (start < end) { in binarySearch()
243 int32_t mid = (start + end) / 2; in binarySearch()
246 start = mid + 1; in binarySearch()
H A Dcollationdatawriter.cpp112 // For any data item, we need to write the start and limit offsets, in write()
113 // so the indexes length must be at least index-of-start-offset + 2. in write()
129 // so that we start with an 8-aligned offset. in write()
222 // Byte offsets of data items all start from the start of the indexes. in write()
343 int32_t start = indexes[startIndex]; in copyData() local
345 if(start < limit) { in copyData()
346 uprv_memcpy(dest + start, src, limit - start); in copyData()
H A Ddatefmt.cpp334 int32_t start = pos.getIndex(); in parse() local
337 if (pos.getIndex() != start) { in parse()
343 // was illegal so we set the error index to the start. in parse()
344 pos.setIndex(start); in parse()
345 pos.setErrorIndex(start); in parse()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dregex.h615 int32_t fStartType; // Info on how a match must start.
792 * If the match succeeds then more information can be obtained via the start(),
796 * @return true if there is a match at the start of the input string.
807 * If the match succeeds then more information can be obtained via the start(),
821 * the previous match, or at the start of the string if there is no previous match.
822 * If a match is found, `start()`, `end()` and `group()`
836 * the previous match, or at the start of the string if there is no previous match.
837 * If a match is found, `start()`, `end()` and `group()`
853 * @param start The (native) index in the input string to begin the search.
858 virtual UBool find(int64_t start, UErrorCod
[all...]
/third_party/FreeBSD/stand/usb/
H A Dusb_busdma_loader.c41 UINTPTR start = (UINTPTR)addr & ~(USB_CACHE_ALIGN_SIZE - 1); in usb_dma_cache_invalid() local
45 DCacheInvRange(start, end); in usb_dma_cache_invalid()
51 UINTPTR start = (UINTPTR)addr & ~(USB_CACHE_ALIGN_SIZE - 1); in usb_dma_cache_flush() local
55 DCacheFlushRange(start, end); in usb_dma_cache_flush()
588 /* start loading next USB transfer, if any */ in usb_bdma_work_loop()
591 /* finally start the hardware */ in usb_bdma_work_loop()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DNumberParserImpl.java315 * @param start
316 * The index into the string at which to start parsing.
322 public void parse(String input, int start, boolean greedy, ParsedNumber result) { in parse() argument
324 assert start >= 0 && start < input.length(); in parse()
327 segment.adjustOffset(start); in parse()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DDeprecatedAPIChecker.java368 int start = signature.indexOf('('); in getParamNames()
371 if (start < 0 || end < 0 || start > end) { in getParamNames()
375 String paramsSegment = signature.substring(start + 1, end); in getParamNames()
/third_party/mbedtls/library/
H A Dssl_ticket.c301 unsigned char *start, in mbedtls_ssl_ticket_write()
309 unsigned char *key_name = start; in mbedtls_ssl_ticket_write()
310 unsigned char *iv = start + TICKET_KEY_NAME_BYTES; in mbedtls_ssl_ticket_write()
327 MBEDTLS_SSL_CHK_BUF_PTR(start, end, TICKET_MIN_LEN); in mbedtls_ssl_ticket_write()
299 mbedtls_ssl_ticket_write(void *p_ticket, const mbedtls_ssl_session *session, unsigned char *start, const unsigned char *end, size_t *tlen, uint32_t *ticket_lifetime) mbedtls_ssl_ticket_write() argument
/third_party/mesa3d/.gitlab-ci/common/
H A Dintel-gpu-freq.sh360 # arg1: start - run throttle detector in background
383 start)
597 -d|--detect-thrott [start|stop|status]
702 DETECT_THROTT=start
704 start|stop|status)
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_ra_validate.c39 * - Values at the start get "undef", which acts like a special SSA value that
515 struct reaching_state *start = &ctx->block_reaching[0]; in check_reaching_defs() local
517 start->full.regs[i].def = UNDEF; in check_reaching_defs()
519 start->half.regs[i].def = UNDEF; in check_reaching_defs()
521 start->shared.regs[i].def = UNDEF; in check_reaching_defs()
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_cs.h76 uint32_t *start; member
118 uint32_t *start, uint32_t *end);
188 return cs->cur - cs->start; in tu_cs_get_size()
229 assert(cs->start <= cs->cur); in tu_cs_sanity_check()
/third_party/libwebsockets/lib/system/dhcpclient/
H A Ddhcpc4.c78 lws_dhcpc4_prep(uint8_t *start, unsigned int bufsiz, lws_dhcpc_req_t *r, int op) in lws_dhcpc4_prep() argument
80 uint8_t *p = start; in lws_dhcpc4_prep()
82 memset(start, 0, bufsiz); in lws_dhcpc4_prep()
102 *p++ = 0x63; /* RFC2132 Magic Cookie indicates start of options */ in lws_dhcpc4_prep()
137 return lws_ptr_diff(p, start); in lws_dhcpc4_prep()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_virtualvalues.h136 LiveRange(): start(-1), end(-1), is_pinned(false) {} in LiveRange()
137 LiveRange(int s, int e): start(s), end(e), is_pinned(false) {} in LiveRange()
138 int start; member
155 void pin_live_range(bool start, bool end = false);

Completed in 24 milliseconds

1...<<111112113114115116117118119120>>...298