/kernel/linux/linux-6.6/drivers/hid/ |
H A D | hid-apple.c | 96 u16 from; member 371 for (trans = table; trans->from; trans++) in apple_setup_key_translation() 376 const struct apple_key_translation *table, u16 from) in apple_find_translation() 381 for (trans = table; trans->from; trans++) in apple_find_translation() 382 if (trans->from == from) in apple_find_translation() 487 bool from_is_set = test_bit(trans->from, input->key); in hidinput_apple_event() 491 code = trans->from; in hidinput_apple_event() 627 * Change the usage from: in apple_report_fixup() 375 apple_find_translation( const struct apple_key_translation *table, u16 from) apple_find_translation() argument
|
/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | mod.rs | 7 //! *O*(1) pop (from the end). 181 /// let vec2 = Vec::from([1, 2, 3, 4]); 364 /// and from a [`Box<[T]>`][owned slice] without reallocating or moving the elements. 366 /// `Vec` will not specifically overwrite any data that is removed from it, 540 /// Creates a `Vec<T>` directly from a pointer, a capacity, and a length. 568 /// to build a `Vec<u8>` from a pointer to a C `char` array with length 571 /// It's also not safe to build one from a `Vec<u16>` and its length, because 791 /// Creates a `Vec<T, A>` directly from a pointer, a capacity, a length, 819 /// to build a `Vec<u8>` from a pointer to a C `char` array with length `size_t`. 820 /// It's also not safe to build one from 3377 fn from(s: &[T]) -> Vec<T> { from() functions 3381 fn from(s: &[T]) -> Vec<T> { from() functions 3397 fn from(s: &mut [T]) -> Vec<T> { from() functions 3401 fn from(s: &mut [T]) -> Vec<T> { from() functions 3417 fn from(s: [T; N]) -> Vec<T> { from() functions 3422 fn from(s: [T; N]) -> Vec<T> { from() functions 3447 fn from(s: Cow<'a, [T]>) -> Vec<T> { from() functions 3465 fn from(s: Box<[T], A>) -> Self { from() functions 3493 fn from(v: Vec<T, A>) -> Self { from() functions 3508 fn from(s: &str) -> Vec<u8> { from() functions [all...] |
/kernel/linux/linux-6.6/net/can/ |
H A D | gw.c | 16 * may be used to endorse or promote products derived from this software 24 * The provided data structures and external interfaces from this code 211 /* do we have a valid len8_dlc value from 9 .. 15 ? */ in mod_retrieve_ccdlc() 232 /* we have a valid dlc value from 9 .. 15 in ccf->len */ in mod_store_ccdlc() 322 int from = calc_idx(xor->from_idx, cf->len); in cgw_csum_xor_rel() local 328 if (from < 0 || to < 0 || res < 0) in cgw_csum_xor_rel() 331 if (from <= to) { in cgw_csum_xor_rel() 332 for (i = from; i <= to; i++) in cgw_csum_xor_rel() 335 for (i = from; i >= to; i--) in cgw_csum_xor_rel() 367 int from in cgw_csum_crc8_rel() local [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.cc | 559 // Remove child from the stack. in TraverseDepthFirst() 720 // absolute timestamps in CLOCK_BOOTTIME from timeDeltas, add them to in StreamPendingTraceEvents() 721 // the "ts" timestamp from the initial "Profile" trace event sent by in StreamPendingTraceEvents() 1011 void CodeMap::MoveCode(Address from, Address to) { in MoveCode() argument 1012 if (from == to) return; in MoveCode() 1014 auto range = code_map_.equal_range(from); in MoveCode() 1023 DCHECK_EQ(info.entry->instruction_start(), from); in MoveCode() 1026 DCHECK(from + info.size <= to || to + info.size <= from); in MoveCode() 1124 // Called from V in Lookup() 1227 UpdateNativeContextAddressForCurrentProfiles( Address from, Address to) UpdateNativeContextAddressForCurrentProfiles() argument [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | list.c | 70 const char *from, const char *to, void *arg) in legacy_cipher_fn() 79 if (from == NULL) in legacy_cipher_fn() 80 from = "<undefined>"; in legacy_cipher_fn() 83 BIO_printf(arg, " %s => %s\n", from, to); in legacy_cipher_fn() 159 const char *from, const char *to, void *arg) in legacy_md_fn() 164 if (from == NULL) in legacy_md_fn() 165 from = "<undefined>"; in legacy_md_fn() 168 BIO_printf((BIO *)arg, " %s => %s\n", from, to); in legacy_md_fn() 69 legacy_cipher_fn(const EVP_CIPHER *c, const char *from, const char *to, void *arg) legacy_cipher_fn() argument 158 legacy_md_fn(const EVP_MD *m, const char *from, const char *to, void *arg) legacy_md_fn() argument
|
/third_party/openssl/apps/ |
H A D | list.c | 70 const char *from, const char *to, void *arg) in legacy_cipher_fn() 79 if (from == NULL) in legacy_cipher_fn() 80 from = "<undefined>"; in legacy_cipher_fn() 83 BIO_printf(arg, " %s => %s\n", from, to); in legacy_cipher_fn() 159 const char *from, const char *to, void *arg) in legacy_md_fn() 164 if (from == NULL) in legacy_md_fn() 165 from = "<undefined>"; in legacy_md_fn() 168 BIO_printf((BIO *)arg, " %s => %s\n", from, to); in legacy_md_fn() 69 legacy_cipher_fn(const EVP_CIPHER *c, const char *from, const char *to, void *arg) legacy_cipher_fn() argument 158 legacy_md_fn(const EVP_MD *m, const char *from, const char *to, void *arg) legacy_md_fn() argument
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_type_handler.h | 16 // contributors may be used to endorse or promote products derived from 63 // other types' default value can be inferred from the type. 181 static inline void Merge(const Type& from, Type** to, Arena* arena); 235 static inline void Merge(const MapEntryAccessorType& from, \ 568 const Type& from, Type** to, Arena* /* arena */) { in Merge() 569 (*to)->MergeFrom(from); in Merge() 662 const MapEntryAccessorType& from, TypeOnMemory* to, Arena* arena) { \ 663 to->Set(&internal::GetEmptyStringAlreadyInited(), from, arena); \ 743 const MapEntryAccessorType& from, TypeOnMemory* to, \ 745 *to = from; \ 567 Merge( const Type& from, Type** to, Arena* ) Merge() argument [all...] |
/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_common_test_ng.cpp | 262 * @tc.steps: step1. GetNextFocusNode from first item in HWTEST_F() 288 * @tc.steps: step1. GetNextFocusNode from middle item in HWTEST_F() 300 * @tc.steps: step2. GetNextFocusNode from last item in HWTEST_F() 325 * @tc.steps: step1. GetNextFocusNode from left item. in HWTEST_F() 341 * @tc.steps: step2. GetNextFocusNode from middle. in HWTEST_F() 371 * @tc.steps: step1. GetNextFocusNode from middle. in HWTEST_F() 482 * @tc.steps: step2. GetNextFocusNode func from top boundary item in HWTEST_F() 495 * @tc.steps: step3. GetNextFocusNode func from bottom boundary item in HWTEST_F() 516 * @tc.steps: step4. GetNextFocusNode func from bottom boundary item in HWTEST_F() 540 * @tc.steps: step5. GetNextFocusNode func from to in HWTEST_F() [all...] |
/kernel/linux/linux-5.10/fs/ |
H A D | block_dev.c | 722 * bdev_read_page() - Start reading a page from a block device 723 * @bdev: The device to read the page from 729 * that will be true on exit from this function, but it need not be. 841 /* Detach inode from wb early as bdi_put() may free bdi->wb */ in bdev_evict_inode() 1206 static int add_symlink(struct kobject *from, struct kobject *to) in add_symlink() argument 1208 return sysfs_create_link(from, to, kobject_name(to)); in add_symlink() 1211 static void del_symlink(struct kobject *from, struct kobject *to) in del_symlink() argument 1213 sysfs_remove_link(from, kobject_name(to)); in del_symlink() 1225 * - from "slaves" directory of the holder @disk to the claimed @bdev 1226 * - from "holder 1903 blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from) blkdev_write_iter() argument [all...] |
/kernel/linux/linux-6.6/io_uring/ |
H A D | net.c | 76 * exceed this limit, then add us to the back of the queue and retry from 85 * When ->locked_cq is set we only allow to post CQEs from the original in io_check_multishot() 173 /* ->prep_async is always called from the submission context */ in io_msg_alloc_async_prep() 665 sr->len = 0; /* get from the provided buffer */ in io_recv_prep_retry() 696 * receive from this socket. in io_recv_finish() 1103 struct iov_iter *from, size_t length) in io_sg_from_iter_iovec() 1106 return __zerocopy_sg_from_iter(NULL, sk, skb, from, length); in io_sg_from_iter_iovec() 1110 struct iov_iter *from, size_t length) in io_sg_from_iter() 1122 return __zerocopy_sg_from_iter(NULL, sk, skb, from, length); in io_sg_from_iter() 1124 bi.bi_size = min(from in io_sg_from_iter() 1102 io_sg_from_iter_iovec(struct sock *sk, struct sk_buff *skb, struct iov_iter *from, size_t length) io_sg_from_iter_iovec() argument 1109 io_sg_from_iter(struct sock *sk, struct sk_buff *skb, struct iov_iter *from, size_t length) io_sg_from_iter() argument [all...] |
/kernel/linux/linux-6.6/net/9p/ |
H A D | client.c | 93 /* Some error codes are taken directly from the server replies, 128 * @opts: options string passed from mount 436 * p9_client_cb - call back from transport to client 531 /* dump the response from server in p9_check_errors() 611 * remove it from the list in p9_client_flush() 680 * transport is excluded from this response message size optimization, in p9_client_rpc() 1036 * followed by data accessed from userspace by read in p9_client_create() 1605 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err) in p9_client_write() argument 1613 fid->fid, offset, iov_iter_count(from)); in p9_client_write() 1615 while (iov_iter_count(from)) { in p9_client_write() [all...] |
/third_party/gn/src/gn/ |
H A D | variables.cc | 110 different from "current_cpu" in that it does not change based on the current 188 cross-compiles, it may be different. This variable differs from "current_os" 189 in that it can be referenced from inside any toolchain and will always return 418 " 5. all_dependent_configs pulled from dependencies, in the order of\n" \ 421 " 6. public_configs pulled from dependencies, in the order of the\n" \ 449 "allow_circular_includes_from: [label list] Permit includes from deps."; 451 R"(allow_circular_includes_from: Permit includes from deps. 454 targets will be permitted to include headers from the current target despite 458 link. To keep linker errors from happening, it is good practice to have all 465 Normally, for a file in target A to include a file from targe [all...] |
/third_party/skia/third_party/externals/brotli/js/ |
H A D | decode.min.js | 1 function BrotliDecodeClosure(){"use strict";function e(e){this.a=e,this.b=0}function t(e){for(var t=-1,i=16;i>0;)e>>>i!=0&&(t+=i,e>>>=i),i>>=1;return t+e}function i(e,t,i){return 16+t+2*(i<<e)}function n(e,i,n){if(e<n+(2<<i))throw"maxDistance is too small";var a=(e-n>>i)+4,o=t(a)-1,r=o-1<<1|a>>o&1;return(r-1<<i)+(1<<i)+n+16}function a(e){var t=new Int16Array(24),i=new Int16Array(24);i[0]=2;for(var n=0;n<23;++n)t[n+1]=t[n]+(1<<Pe[n]),i[n+1]=i[n]+(1<<$e[n]);for(var a=0;a<704;++a){var o=a>>>6,r=-4;o>=2&&(o-=2,r=0);var s=(170064>>>2*o&3)<<3|a>>>3&7,l=(156228>>>2*o&3)<<3|7&a,c=i[l],d=r+(c>4?3:c-2),h=4*a;e[h+0]=Pe[s]|$e[l]<<8,e[h+1]=t[s],e[h+2]=i[l],e[h+3]=d}}function o(e){var t=e.c;if(e.c=0,e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),0==H(e,1))return 16;var i=H(e,3);return 0!=i?17+i:(i=H(e,3),0!=i?1==i?0==t?-1:(e.c=1,1==H(e,1)?-1:(i=H(e,6),i<10||i>30?-1:i)):8+i:17)}function r(e,t){if(0!=e.h)throw"State MUST be uninitialized";e.j=new Int32Array(3091),e.j[0]=7,e.k=3;var i=n(2147483644,3,120);e.l=new Int8Array(i),e.m=new Int32Array(i),e.input=t,U(e),e.h=1}function s(e){if(0==e.h)throw"State MUST be initialized";11!=e.h&&(e.h=11,null!=e.input&&(ne(e.input),e.input=null))}function l(e){if(e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),0!=H(e,1)){var t=H(e,3);return 0==t?1:H(e,t)+(1<<t)}return 0}function c(e){if(e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),e.n=H(e,1),e.o=0,e.p=0,e.q=0,0==e.n||0==H(e,1)){var t=H(e,2)+4;if(7==t){if(e.q=1,0!=H(e,1))throw"Corrupted reserved bit";var i=H(e,2);if(0==i)return;for(var n=0;n<i;n++){e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var a=H(e,8);if(0==a&&n+1==i&&i>1)throw"Exuberant nibble";e.o|=a<<8*n}}else for(var n=0;n<t;n++){e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var a=H(e,4);if(0==a&&n+1==t&&t>4)throw"Exuberant nibble";e.o|=a<<4*n}e.o++,0==e.n&&(e.p=H(e,1))}}function d(e,t,i){var n=e[t],a=i.e>>>i.d;n+=255&a;var o=e[n]>>16,r=65535&e[n];if(o<=8)return i.d+=o,r;n+=r;var s=(1<<o)-1;return n+=(a&s)>>>8,i.d+=(e[n]>>16)+8,65535&e[n]}function h(e,t,i){i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16);var n=d(e,t,i),a=ge[n];return i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16),me[n]+(a<=16?H(i,a):R(i,a))}function f(e,t){for(var i=e[t];t>0;t--)e[t]=e[t-1];e[0]=i}function p(e,t){for(var i=new Int32Array(256),n=0;n<256;n++)i[n]=n;for(var n=0;n<t;n++){var a=255&e[n];e[n]=i[a],0!=a&&f(i,a)}}function u(e,t,i,n){var a=0,o=8,r=0,s=0,l=32768,c=new Int32Array(33),d=c.length-1;for(W(c,d,5,e,18);a<t&&l>0;){n.g>2030&&B(n),n.d>=16&&(n.e=n.f[n.g++]<<16|n.e>>>16,n.d-=16);var h=n.e>>>n.d&31;n.d+=c[h]>>16;var f=65535&c[h];if(f<16)r=0,i[a++]=f,0!=f&&(o=f,l-=32768>>f);else{var p=f-14,u=0;16==f&&(u=o),s!=u&&(r=0,s=u);var m=r;r>0&&(r-=2,r<<=p),n.d>=16&&(n.e=n.f[n.g++]<<16|n.e>>>16,n.d-=16),r+=H(n,p)+3;var g=r-m;if(a+g>t)throw"symbol + repeatDelta > numSymbols";for(var P=0;P<g;P++)i[a++]=s;0!=s&&(l-=g<<15-s)}}if(0!=l)throw"Unused space";i.fill(0,a,t)}function m(e,t){for(var i=0;i<t-1;++i)for(var n=i+1;n<t;++n)if(e[i]==e[n])throw"Duplicate simple Huffman code symbol"}function g(e,i,n,a,o){for(var r=new Int32Array(i),s=new Int32Array(4),l=1+t(e-1),c=H(o,2)+1,d=0;d<c;d++){o.d>=16&&(o.e=o.f[o.g++]<<16|o.e>>>16,o.d-=16);var h=H(o,l);if(h>=i)throw"Can't readHuffmanCode";s[d]=h}m(s,c);var f=c;switch(4==c&&(f+=H(o,1)),f){case 1:r[s[0]]=1;break;case 2:r[s[0]]=1,r[s[1]]=1;break;case 3:r[s[0]]=1,r[s[1]]=2,r[s[2]]=2;break;case 4:r[s[0]]=2,r[s[1]]=2,r[s[2]]=2,r[s[3]]=2;break;case 5:r[s[0]]=1,r[s[1]]=2,r[s[2]]=3,r[s[3]]=3}return W(n,a,8,r,i)}function P(e,t,i,n,a){for(var o=new Int32Array(e),r=new Int32Array(18),s=32,l=0,c=t;c<18&&s>0;c++){var d=ce[c];a.d>=16&&(a.e=a.f[a.g++]<<16|a.e>>>16,a.d-=16);var h=a.e>>>a.d&15;a.d+=fe[h]>>16;var f=65535&fe[h];r[d]=f,0!=f&&(s-=32>>f,l++)}if(0!=s&&1!=l)throw"Corrupted Huffman code histogram";return u(r,e,o,a),W(i,n,8,o,e)}function $(e,t,i,n,a){a.g>2030&&B(a),a.d>=16&&(a.e=a.f[a.g++]<<16|a.e>>>16,a.d-=16);var o=H(a,2);return 1==o?g(e,t,i,n,a):P(t,o,i,n,a)}function b(e,t,i){i.g>2030&&B(i);var n=l(i)+1;if(1==n)return t.fill(0,0,e),n;i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16);var a=H(i,1),o=0;0!=a&&(o=H(i,4)+1);var r=n+o,s=le[r+31>>5],c=new Int32Array(s+1),h=c.length-1;$(r,r,c,h,i);for(var f=0;f<e;){i.g>2030&&B(i),i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16);var u=d(c,h,i);if(0==u)t[f]=0,f++;else if(u<=o){i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16);for(var m=(1<<u)+H(i,u);0!=m;){if(f>=e)throw"Corrupted context map";t[f]=0,f++,m--}}else t[f]=u-o,f++}return i.d>=16&&(i.e=i.f[i.g++]<<16|i.e>>>16,i.d-=16),1==H(i,1)&&p(t,e),n}function v(e,t,i){var n=e.r,a=4+2*t;e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var o=d(e.j,2*t,e),r=h(e.j,2*t+1,e);return 1==o?o=n[a+1]+1:0==o?o=n[a]:o-=2,o>=i&&(o-=i),n[a]=n[a+1],n[a+1]=o,r}function y(e){e.s=v(e,0,e.t);var t=e.r[5];e.u=t<<6,e.v=255&e.w[e.u];var i=e.x[t];e.y=i<<9,e.z=e.y+256}function X(e){e.A=v(e,1,e.B),e.C=e.r[7]}function w(e){e.D=v(e,2,e.F),e.G=e.r[9]<<2}function Y(e){var t=e.H;if(t>e.I){for(var i=e.I;t>>1>i;)t>>=1;0==e.n&&t<16384&&e.H>=16384&&(t=16384)}if(!(t<=e.J)){var n=t+37,a=new Int8Array(n);0!=e.K.length&&a.L(e.K.M(0,0+e.J),0),e.K=a,e.J=t}}function Q(e){return 0!=e.n?(e.N=10,void(e.h=12)):(e.O=new Int32Array(0),e.P=new Int32Array(0),e.Q=new Int32Array(0),e.g>2030&&B(e),c(e),void(0==e.o&&0==e.q||(0!=e.p||0!=e.q?(J(e),e.h=0!=e.q?5:6):e.h=3,0==e.q&&(e.I+=e.o,e.I>1<<30&&(e.I=1<<30),e.J<e.H&&Y(e)))))}function k(e,t,i){var n=e.j[2*t];if(i<=1)return e.j[2*t+1]=n,e.j[2*t+2]=n,1<<28;var a=i+2;n+=$(a,a,e.j,2*t,e),e.j[2*t+1]=n;var o=26;return n+=$(o,o,e.j,2*t+1,e),e.j[2*t+2]=n,h(e.j,2*t+1,e)}function x(e,t){for(var i=e.l,n=e.m,a=e.R,o=e.S,r=1<<a,s=1,l=0,c=16,d=0;d<o;++d)i[c]=0,n[c]=d+1,++c;for(;c<t;){for(var h=o+((2+l<<s)-4<<a)+1,d=0;d<r;++d)i[c]=s,n[c]=h+d,++c;s+=l,l^=1}}function C(e){e.t=l(e)+1,e.s=k(e,0,e.t),e.B=l(e)+1,e.A=k(e,1,e.B),e.F=l(e)+1,e.D=k(e,2,e.F),e.g>2030&&B(e),e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),e.R=H(e,2),e.S=H(e,4)<<e.R,e.T=(1<<e.R)-1,e.x=new Int8Array(e.t);for(var t=0;t<e.t;){for(var a=te(t+96,e.t);t<a;++t)e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),e.x[t]=H(e,2);e.g>2030&&B(e)}e.w=new Int8Array(e.t<<6);var o=b(e.t<<6,e.w,e);e.U=1;for(var r=0;r<e.t<<6;r++)if(e.w[r]!=r>>6){e.U=0;break}e.V=new Int8Array(e.F<<2);var s=b(e.F<<2,e.V,e);e.O=I(256,256,o,e),e.P=I(704,704,e.B,e);var c=i(e.R,e.S,24),d=c;1==e.c&&(c=i(e.R,e.S,62),d=n(2147483644,e.R,e.S)),e.Q=I(c,d,s,e),x(e,d),e.u=0,e.G=0,e.y=512*e.x[0],e.z=e.y+256,e.v=0,e.C=0,e.r[4]=1,e.r[5]=0,e.r[6]=1,e.r[7]=0,e.r[8]=1,e.r[9]=0}function j(e){var t=e.K;if(e.o<=0)return L(e),void(e.h=2);var i=te(e.J-e.W,e.o);return G(e,t,e.W,i),e.o-=i,e.W+=i,e.W==e.J?(e.N=6,void(e.h=12)):(L(e),void(e.h=2))}function A(e){var t=te(e.X-e.Y,e.Z-e.$);return 0!=t&&(e._.L(e.K.M(e.$,e.$+t),e.aa+e.Y),e.Y+=t,e.$+=t),e.Y<e.X?1:0}function I(e,t,i,n){for(var a=le[t+31>>5],o=new Int32Array(i+i*a),r=i,s=0;s<i;++s)o[s]=r,r+=$(e,t,o,s,n);return o}function q(e){var t=e.J;return 0!=e.i&&(t=te(t,e.$+e.X-e.Y)),t}function T(e){if(0==e.h)throw"Can't decompress until initialized";if(11==e.h)throw"Can't decompress after close";if(1==e.h){var t=o(e);if(t==-1)throw"Invalid 'windowBits' code";e.H=1<<t,e.ba=e.H-16,e.h=2}for(var i=q(e),n=e.J-1,a=e.K;10!=e.h;)switch(e.h){case 2:if(e.o<0)throw"Invalid metablock length";Q(e),i=q(e),n=e.J-1,a=e.K;continue;case 3:C(e),e.h=4;case 4:if(e.o<=0){e.h=2;continue}e.g>2030&&B(e),0==e.A&&X(e),e.A--,e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var r=d(e.P,e.C,e)<<2,s=be[r],l=be[r+1],c=be[r+2];e.ca=be[r+3],e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var h=255&s;e.da=l+(h<=16?H(e,h):R(e,h)),e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var h=s>>8;e.ea=c+(h<=16?H(e,h):R(e,h)),e.fa=0,e.h=7;case 7:if(0!=e.U){for(;e.fa<e.da;)if(e.g>2030&&B(e),0==e.s&&y(e),e.s--,e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),a[e.W]=d(e.O,e.v,e),e.W++,e.fa++,e.W>=i){e.N=7,e.h=12;break}}else for(var f=255&a[e.W-1&n],p=255&a[e.W-2&n];e.fa<e.da;){e.g>2030&&B(e),0==e.s&&y(e);var u=ye[e.y+f]|ye[e.z+p],m=255&e.w[e.u+u];if(e.s--,p=f,e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),f=d(e.O,m,e),a[e.W]=f,e.W++,e.fa++,e.W>=i){e.N=7,e.h=12;break}}if(7!=e.h)continue;if(e.o-=e.da,e.o<=0){e.h=4;continue}var g=e.ca;if(g<0)e.ga=e.r[e.k];else{e.g>2030&&B(e),0==e.D&&w(e),e.D--,e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);var P=255&e.V[e.G+g];if(g=d(e.Q,P,e),g<16){var $=e.k+de[g]&3;if(e.ga=e.r[$]+he[g],e.ga<0)throw"Negative distance"}else{var b,h=e.l[g];e.d+h<=32?b=H(e,h):(e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),b=h<=16?H(e,h):R(e,h)),e.ga=e.m[g]+(b<<e.R)}}if(e.ha!=e.ba&&e.W<e.ba?e.ha=e.W:e.ha=e.ba,e.ga>e.ha){e.h=9;continue}if(g>0&&(e.k=e.k+1&3,e.r[e.k]=e.ga),e.ea>e.o)throw"Invalid backward reference";e.fa=0,e.h=8;case 8:var v=e.W-e.ga&n,Y=e.W,k=e.ea-e.fa,x=v+k,I=Y+k;if(x<n&&I<n){if(k<12||x>Y&&I>v)for(var T=0;T<k;T+=4)a[Y++]=a[v++],a[Y++]=a[v++],a[Y++]=a[v++],a[Y++]=a[v++];else a.copyWithin(Y,v,x);e.fa+=k,e.o-=k,e.W+=k}else for(;e.fa<e.ea;)if(a[e.W]=a[e.W-e.ga&n],e.o--,e.W++,e.fa++,e.W>=i){e.N=8,e.h=12;break}8==e.h&&(e.h=4);continue;case 9:if(e.ga>2147483644)throw"Invalid backward reference";if(!(e.ea>=4&&e.ea<=24))throw"Invalid backward reference";var S=pe[e.ea],E=e.ga-e.ha-1,D=ue[e.ea],N=(1<<D)-1,F=E&N,W=E>>>D;if(S+=F*e.ea,!(W<121))throw"Invalid backward reference";var U=z(a,e.W,se,S,e.ea,ve,W);if(e.W+=U,e.o-=U,e.W>=i){e.N=4,e.h=12;continue}e.h=4;continue;case 5:for(;e.o>0;)e.g>2030&&B(e),e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16),H(e,8),e.o--;e.h=2;continue;case 6:j(e);continue;case 12:e.Z=te(e.W,e.J),e.h=13;case 13:if(0==A(e))return;e.W>=e.ba&&(e.ha=e.ba),e.W>=e.J&&(e.W>e.J&&a.copyWithin(0,e.J,e.W),e.W&=n,e.$=0),e.h=e.N;continue;default:throw"Unexpected state "+e.h}if(10==e.h){if(e.o<0)throw"Invalid metablock length";J(e),M(e,1)}}function S(e,t,i){this.ia=0,this.ja=new Int32Array(0),this.ka=new Int8Array(0),this.la=new Int32Array(0),this.ma=new Int16Array(0),this.ia=e,this.ja=new Int32Array(3*e),this.ma=new Int16Array(e),this.ka=new Int8Array(t),this.la=new Int32Array(i+1)}function E(e,t,i,n,a){for(var o=n.length,r=1,s=0,l=0;l<o;++l){var c=n.charCodeAt(l);35==c?t[r++]=s:e[s++]=c}for(var l=0;l<363;++l)i[l]=a.charCodeAt(l)-32}function z(e,t,i,n,a,o,r){var s=t,l=o.ja,c=o.ka,d=o.la,h=3*r,f=l[h],p=l[h+1],u=l[h+2],m=d[f],g=d[f+1],P=d[u],$=d[u+1],b=p-11,v=p-0;for((b<1||b>9)&&(b=0),(v<1||v>9)&&(v=0);m!=g;)e[s++]=c[m++];b>a&&(b=a),n+=b,a-=b,a-=v;for(var y=a;y>0;)e[s++]=i[n++],y--;if(10==p||11==p){var X=s-a;for(10==p&&(a=1);a>0;){var w=255&e[X];w<192?(w>=97&&w<=122&&(e[X]^=32),X+=1,a-=1):w<224?(e[X+1]^=32,X+=2,a-=2):(e[X+2]^=5,X+=3,a-=3)}}else if(21==p||22==p)for(var Y=s-a,Q=o.ma[r],k=(32767&Q)+(16777216-(32768&Q));a>0;){var x=1,w=255&e[Y];if(w<128)k+=w,e[Y]=127&k;else if(w<192);else if(w<224)if(a>=2){var C=e[Y+1];k+=63&C|(31&w)<<6,e[Y]=192|k>>6&31,e[Y+1]=192&C|63&k,x=2}else x=a;else if(w<240)if(a>=3){var C=e[Y+1],j=e[Y+2];k+=63&j|(63&C)<<6|(15&w)<<12,e[Y]=224|k>>12&15,e[Y+1]=192&C|k>>6&63,e[Y+2]=192&j|63&k,x=3}else x=a;else if(w<248)if(a>=4){var C=e[Y+1],j=e[Y+2],A=e[Y+3];k+=63&A|(63&j)<<6|(63&C)<<12|(7&w)<<18,e[Y]=240|k>>18&7,e[Y+1]=192&C|k>>12&63,e[Y+2]=192&j|k>>6&63,e[Y+3]=192&A|63&k,x=4}else x=a;Y+=x,a-=x,21==p&&(a=0)}for(;P!=$;)e[s++]=c[P++];return s-t}function D(e,t){for(var i=1<<t-1;0!=(e&i);)i>>=1;return(e&i-1)+i}function N(e,t,i,n,a){do n-=i,e[t+n]=a;while(n>0)}function F(e,t,i){for(var n=1<<t-i;t<15&&(n-=e[t],!(n<=0));)t++,n<<=1;return t-i}function W(e,t,i,n,a){var o,r,s=e[t],l=new Int32Array(a),c=new Int32Array(16),d=new Int32Array(16);for(r=0;r<a;r++)c[n[r]]++;d[1]=0;for(var h=1;h<15;h++)d[h+1]=d[h]+c[h];for(r=0;r<a;r++)0!=n[r]&&(l[d[n[r]]++]=r);var f=i,p=1<<f,u=p;if(1==d[15]){for(o=0;o<u;o++)e[s+o]=l[0];return u}o=0,r=0;for(var h=1,m=2;h<=i;h++,m<<=1)for(;c[h]>0;c[h]--)N(e,s+o,m,p,h<<16|l[r++]),o=D(o,h);for(var g=u-1,P=-1,$=s,h=i+1,m=2;h<=15;h++,m<<=1)for(;c[h]>0;c[h]--)(o&g)!=P&&($+=p,f=F(c,h,i),p=1<<f,u+=p,P=o&g,e[s+P]=f+i<<16|$-s-P),N(e,$+(o>>i),m,p,h-i<<16|l[r++]),o=D(o,h);return u}function B(e){if(0!=e.na){if(_(e)>=-2)return;throw"No more input"}var t=e.g<<1,i=4096-t;for(e.oa.copyWithin(0,t,4096),e.g=0;i<4096;){var n=4096-i,a=ie(e.input,e.oa,i,n);if(a<=0){e.na=1,e.pa=i,i+=1;break}i+=a}K(e,i)}function M(e,t){if(0!=e.na){var i=(e.g<<1)+(e.d+7>>3)-4;if(i>e.pa)throw"Read after end";if(0!=t&&i!=e.pa)throw"Unused bytes after end"}}function H(e,t){var i=e.e>>>e.d&(1<<t)-1;return e.d+=t,i}function R(e,t){var i=H(e,16);return e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16,i|H(e,t-16)<<16}function U(e){e.oa=new Int8Array(4160),e.e=0,e.f=new Int16Array(2080),e.d=32,e.g=2048,e.na=0,O(e)}function O(e){e.g>2030&&B(e),M(e,0),e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16,e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16}function L(e){32==e.d&&O(e)}function J(e){var t=32-e.d&7;if(0!=t){var i=H(e,t);if(0!=i)throw"Corrupted padding bits"}}function _(e){var t=2048;return 0!=e.na&&(t=e.pa+1>>1),t-e.g}function G(e,t,i,n){if(0!=(7&e.d))throw"Unaligned copyBytes";for(;32!=e.d&&0!=n;)t[i++]=e.e>>>e.d,e.d+=8,n--;if(0!=n){var a=te(_(e),n>>1);if(a>0){var o=e.g<<1,r=a<<1;t.L(e.oa.M(o,o+r),i),i+=r,n-=r,e.g+=a}if(0!=n){if(_(e)>0){for(e.d>=16&&(e.e=e.f[e.g++]<<16|e.e>>>16,e.d-=16);0!=n;)t[i++]=e.e>>>e.d,e.d+=8,n--;return void M(e,0)}for(;n>0;){var s=ie(e.input,t,i,n);if(s==-1)throw"Unexpected end of input";i+=s,n-=s}}}}function K(e,t){for(var i=e.oa,n=t>>1,a=e.f,o=0;o<n;++o)a[o]=255&i[2*o]|(255&i[2*o+1])<<8}function V(e,t,i){for(var n=0;n<256;++n)e[n]=63&n,e[512+n]=n>>2,e[1792+n]=2+(n>>6);for(var n=0;n<128;++n)e[1024+n]=4*(t.charCodeAt(n)-32);for(var n=0;n<64;++n)e[1152+n]=1&n,e[1216+n]=2+(1&n);for(var a=1280,o=0;o<19;++o)for(var r=3&o,s=i.charCodeAt(o)-32,n=0;n<s;++n)e[a++]=r;for(var n=0;n<16;++n)e[1792+n]=1,e[2032+n]=6;e[1792]=0,e[2047]=7;for(var n=0;n<256;++n)e[1536+n]=e[1792+n]<<3}function Z(){this.K=new Int8Array(0),this.x=new Int8Array(0),this.w=new Int8Array(0),this.V=new Int8Array(0),this.l=new Int8Array(0),this._=new Int8Array(0),this.oa=new Int8Array(0),this.f=new Int16Array(0),this.qa=new Int32Array(0),this.r=new Int32Array(0),this.j=new Int32Array(0),this.O=new Int32Array(0),this.P=new Int32Array(0),this.Q=new Int32Array(0),this.m=new Int32Array(0),this.h=0,this.N=0,this.e=0,this.d=0,this.g=0,this.pa=0,this.na=0,this.o=0,this.n=0,this.p=0,this.q=0,this.s=0,this.t=0,this.A=0,this.B=0,this.D=0,this.F=0,this.W=0,this.ha=0,this.k=0,this.U=0,this.v=0,this.C=0,this.fa=0,this.da=0,this.u=0,this.G=0,this.y=0,this.z=0,this.ca=0,this.S=0,this.T=0,this.R=0,this.ga=0,this.ea=0,this.ba=0,this.H=0,this.J=0,this.I=0,this.aa=0,this.X=0,this.Y=0,this.$=0,this.Z=0,this.i=0,this.c=0,this.input=null,this.K=new Int8Array(0),this.r=new Int32Array(10),this.r[0]=16,this.r[1]=15,this.r[2]=11,this.r[3]=4}function ee(e,t,i,n){var a=oe(t+i);if(a.length!=e.length)throw"Corrupted brotli dictionary";for(var o=0,r=n.length,s=0;s<r;s+=2){var l=n.charCodeAt(s)-36,c=n.charCodeAt(s+1)-36;o+=l;for(var d=0;d<c;++d)a[o]|=128,o++}e.L(a)}function te(e,t){return e<=t?e:t}function ie(e,t,i,n){if(null==e)return-1;var a=te(e.b+n,e.a.length),o=a-e.b;return t.L(e.a.M(e.b,a),i),e.b+=o,o}function ne(e){return 0}function ae(e){}function oe(e){for(var t=e.length,i=new Int8Array(t),n=0;n<t;++n)i[n]=e.charCodeAt(n);return i}function re(t){var i=new Z;r(i,new e(t));for(var n=0,a=[];;){var o=new Int8Array(16384);if(a.push(o),i._=o,i.aa=0,i.X=16384,i.Y=0,T(i),n+=i.Y,i.Y<16384)break}s(i);for(var l=new Int8Array(n),c=0,d=0;d<a.length;++d){var o=a[d],h=te(n,c+16384),f=h-c;f<16384?l.L(o.M(0,f),c):l.L(o,c),c+=f}return l}var se=new Int8Array(0),le=Int32Array.from([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]),ce=Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),de=Int32Array.from([0,3,2,1,0,0,0,0,0,0,3,3,3,3,3,3]),he=Int32Array.from([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),fe=Int32Array.from([131072,131076,131075,196610,131072,131076,131075,262145,131072,131076,131075,196610,131072,131076,131075,262149]),pe=Int32Array.from([0,0,0,0,0,4096,9216,21504,35840,44032,53248,63488,74752,87040,93696,100864,104704,106752,108928,113536,115968,118528,119872,121280,122016]),ue=Int32Array.from([0,0,0,0,10,10,11,11,10,10,10,10,10,9,9,8,7,7,8,7,7,6,6,5,5]),me=Int32Array.from([1,5,9,13,17,25,33,41,49,65,81,97,113,145,177,209,241,305,369,497,753,1265,2289,4337,8433,16625]),ge=Int32Array.from([2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,7,8,9,10,11,12,13,24]),Pe=Int16Array.from([ [all...] |
/third_party/toybox/toys/pending/ |
H A D | vi.c | 644 static int vi_yank(char reg, size_t from, int flags) in vi_yank() argument 646 size_t start = from, end = TT.cursor; in vi_yank() 650 if (TT.vi_mov_flag&0x80000000) start = TT.cursor, end = from; in vi_yank() 653 if (TT.yank.alloc < end-from) { in vi_yank() 654 size_t new_bounds = (1+end-from)/1024; in vi_yank() 655 new_bounds += ((1+end-from)%1024) ? 1 : 0; in vi_yank() 669 static int vi_delete(char reg, size_t from, int flags) in vi_delete() argument 671 size_t start = from, end = TT.cursor; in vi_delete() 673 vi_yank(reg, from, flags); in vi_delete() 676 start = TT.cursor, end = from; in vi_delete() 823 size_t from = TT.cursor; vi_x() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/select/ |
H A D | select_element.h | 56 const Color& from, const Color& to, bool isDown);
|
/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/ |
H A D | tab_bar_size_animation.h | 29 void Start(const WeakPtr<RenderNode>& tabBar, int32_t from, int32_t to);
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | data_change_listener.h | 38 void OnDataMoved(size_t from, size_t to);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | repeat_node.h | 67 void MoveData(int32_t from, int32_t to) override;
|
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/canvas/indexAPIAttr1/ |
H A D | index.js | 16 import {routePage} from "../../../common/js/general";
|
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/canvas/indexAPIStroke/ |
H A D | index.js | 16 import {routePage} from "../../../common/js/general";
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | axis_event.cpp | 25 std::shared_ptr<AxisEvent> AxisEvent::from(std::shared_ptr<InputEvent> inputEvent) in from() function in OHOS::MMI::AxisEvent
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | page_64.h | 80 extern void copy_page(void *to, void *from);
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | head64.S | 41 # We returned from start_kernel ?!? PANIK
|
/kernel/linux/linux-5.10/arch/um/include/shared/ |
H A D | kern_util.h | 56 extern int copy_from_user_proc(void *to, void *from, int size);
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | numa.h | 29 extern void __init numa_set_distance(int from, int to, int distance);
|