| /OK3568_Linux_fs/kernel/lib/zlib_deflate/ |
| H A D | deflate.c | 405 if (strm->avail_in != 0 || s->lookahead != 0 || in zlib_deflate() 540 s->lookahead = 0; in lm_init() 602 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match() 693 if ((uInt)best_len <= s->lookahead) return best_len; in longest_match() 694 return s->lookahead; in longest_match() 747 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window() 750 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window() 809 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window() 810 s->lookahead += n; in fill_window() 813 if (s->lookahead >= MIN_MATCH) { in fill_window() [all …]
|
| H A D | defutil.h | 136 uInt lookahead; /* number of valid bytes ahead in window */ member
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 285 lookahead = None # Current lookahead symbol 343 if not lookahead: 345 lookahead = get_token() # Get the next token 347 lookahead = lookaheadstack.pop() 348 if not lookahead: 349 lookahead = YaccSymbol() 350 lookahead.type = "$end" 354 … ("%s . %s" % (" ".join([xx.type for xx in symstack][1:]), str(lookahead))).lstrip()) 358 ltype = lookahead.type 371 symstack.append(lookahead) [all …]
|
| /OK3568_Linux_fs/u-boot/lib/zlib/ |
| H A D | deflate.c | 814 if (strm->avail_in != 0 || s->lookahead != 0 || 848 if (s->lookahead == 0) { 1036 s->lookahead = 0; 1104 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; 1200 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; 1201 return s->lookahead; 1260 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; 1312 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); 1316 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { 1378 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); [all …]
|
| H A D | deflate.h | 158 uInt lookahead; /* number of valid bytes ahead in window */ member
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | dtc-parser.tab.c_shipped | 1070 - The only way there can be no lookahead present (in yychar) is if 1072 detecting the absence of a lookahead is sufficient to determine 1075 - Don't assume there isn't a lookahead just because this state is a 1080 correct lookahead information, and it depends on the parser not 1081 to perform extra reductions after fetching a lookahead from the 1199 /* The lookahead symbol. */ 1202 /* The semantic value of the lookahead symbol. */ 1204 /* Location data for the lookahead symbol. */ 1379 lookahead token if we need one and don't already have one. */ 1381 /* First try to decide what to do without reference to lookahead token. */ [all …]
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | zconf.tab.c_shipped | 1088 - The only way there can be no lookahead present (in yychar) is if 1090 detecting the absence of a lookahead is sufficient to determine 1093 - Don't assume there isn't a lookahead just because this state is a 1098 correct lookahead information, and it depends on the parser not 1099 to perform extra reductions after fetching a lookahead from the 1254 /* The lookahead symbol. */ 1257 /* The semantic value of the lookahead symbol. */ 1411 lookahead token if we need one and don't already have one. */ 1413 /* First try to decide what to do without reference to lookahead token. */ 1418 /* Not known => get a lookahead token if don't already have one. */ [all …]
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | zconf.tab.c_shipped | 1089 - The only way there can be no lookahead present (in yychar) is if 1091 detecting the absence of a lookahead is sufficient to determine 1094 - Don't assume there isn't a lookahead just because this state is a 1099 correct lookahead information, and it depends on the parser not 1100 to perform extra reductions after fetching a lookahead from the 1255 /* The lookahead symbol. */ 1258 /* The semantic value of the lookahead symbol. */ 1412 lookahead token if we need one and don't already have one. */ 1414 /* First try to decide what to do without reference to lookahead token. */ 1419 /* Not known => get a lookahead token if don't already have one. */ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath10k/ |
| H A D | sdio.c | 930 u32 *lookahead) in ath10k_sdio_mbox_read_int_status() argument 941 *lookahead = 0; in ath10k_sdio_mbox_read_int_status() 974 *lookahead = 0; in ath10k_sdio_mbox_read_int_status() 984 *lookahead = le32_to_cpu( in ath10k_sdio_mbox_read_int_status() 986 if (!*lookahead) in ath10k_sdio_mbox_read_int_status() 999 u32 lookahead; in ath10k_sdio_mbox_proc_pending_irqs() local 1010 &lookahead); in ath10k_sdio_mbox_proc_pending_irqs() 1016 if (!host_int_status && !lookahead) { in ath10k_sdio_mbox_proc_pending_irqs() 1022 if (lookahead) { in ath10k_sdio_mbox_proc_pending_irqs() 1025 lookahead); in ath10k_sdio_mbox_proc_pending_irqs() [all …]
|
| H A D | htc.h | 235 u8 lookahead[4]; member 243 u8 lookahead[4]; member
|
| H A D | htc.c | 295 memcpy((u8 *)next_lookaheads, report->lookahead, 4); in ath10k_htc_process_lookahead() 325 report->lookahead, 4); in ath10k_htc_process_lookahead_bundle()
|
| /OK3568_Linux_fs/kernel/arch/sh/include/asm/ |
| H A D | processor_32.h | 81 unsigned char lookahead; member
|
| /OK3568_Linux_fs/kernel/arch/x86/math-emu/ |
| H A D | fpu_system.h | 87 #define FPU_lookahead (I387->soft.lookahead)
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/fpu/ |
| H A D | types.h | 91 u8 lookahead; member
|
| /OK3568_Linux_fs/u-boot/lib/lzma/ |
| H A D | Types.h | 183 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
|
| /OK3568_Linux_fs/kernel/tools/perf/util/intel-pt-decoder/ |
| H A D | intel-pt-decoder.h | 243 int (*lookahead)(void *data, intel_pt_lookahead_cb_t cb, void *cb_data); member
|
| H A D | intel-pt-decoder.c | 107 int (*lookahead)(void *data, intel_pt_lookahead_cb_t cb, void *cb_data); member 256 decoder->lookahead = params->lookahead; in intel_pt_decoder_new() 3275 err = decoder->lookahead(decoder->data, intel_pt_ff_cb, &d); in intel_pt_fast_forward()
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | slub.c | 3258 int lookahead = 3; in build_detached_freelist() local 3321 if (!--lookahead) in build_detached_freelist()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | intel-pt.c | 1039 params.lookahead = intel_pt_lookahead; in intel_pt_alloc_queue()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | cppinternals.info | 126 responsible for issues like directive handling, returning lookahead
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | cppinternals.info | 126 responsible for issues like directive handling, returning lookahead
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/video/fonts/ |
| H A D | qt_zh_CN.ts | 4534 <source>bad lookahead syntax</source>
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/ |
| H A D | qt_zh_CN.ts | 4534 <source>bad lookahead syntax</source>
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/MediaUI/fonts/ |
| H A D | qt_zh_CN.ts | 4534 <source>bad lookahead syntax</source>
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/music/fonts/ |
| H A D | qt_zh_CN.ts | 4534 <source>bad lookahead syntax</source>
|