HomeSort by relevance Sort by last modified time
    Searched refs:Can (Results 251 - 275 of 294) sorted by null

<<1112

  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 3 // license that can be found in the LICENSE file.
81 // skips that field and completes the unmarshaling as best it can.
112 // that can unmarshal a JSON description of themselves.
113 // The input can be assumed to be a valid encoding of
444 // if decodingNull is true, indirect stops at the last pointer so it can be set to nil.
532 // Look ahead for ] - can only happen on first iteration.
538 // Back up so d.value can have the byte we just read.
663 // closing } - can only happen on first iteration.
896 // The main parser checks that only true and false can reach here,
909 // The main parser checks that only true and false can reach here
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
fmt_test.go 3 // license that can be found in the LICENSE file.
866 // each key. Since NaNs can be map keys but cannot
    [all...]
scan.go 3 // license that can be found in the LICENSE file.
840 // immediately after the escape can itself be a backslash or quote.
1001 // For now, can only handle (renamed) []byte.
1004 s.errorString("can't scan type: " + val.Type().String())
1018 s.errorString("can't scan type: " + val.Type().String())
1160 // Can't advance format. Why not?
  /prebuilts/go/linux-x86/src/os/exec/
exec_test.go 3 // license that can be found in the LICENSE file.
146 // Can't run a non-existent binary
234 // Check that we can access methods of the underlying os.File.`
238 t.Error("can't access methods of underlying *os.File")
  /prebuilts/go/linux-x86/src/runtime/
panic.go 3 // license that can be found in the LICENSE file.
75 // go code on the system stack can't defer
80 // for deferproc does not describe them. So we can't let garbage
83 // Until the copy completes, we can only call nosplit routines.
111 // No code can go here - the C return register has
290 // Separate function so that it can split stack.
314 // taken so it can be matched against pending defers.
331 // of the arguments until the jmpdefer can flip the PC over to
495 // can find and update the defer's argument frame if stack growth
563 // x is an argument mainly so that we can return its address
    [all...]
proc.go 3 // license that can be found in the LICENSE file.
22 // M must have an associated P to execute Go code, however it can be
41 // goroutine can be out of work the very next moment, we will need to park it.
67 // spinning->non-spinning thread transition. This transition can race with submission
69 // thread. If they both fail to do that, we can end up with semi-persistent CPU
92 // so all cgo calls can rely on it existing. When main_init is complete,
93 // it is closed, meaning cgocallbackg can reliably receive from it.
135 // Those can arrange for main.main to run in the main thread
290 // can't do anything that might move the G between Ms here.
295 // The goroutine can be made runnable again by calling goready(gp)
    [all...]
trace.go 3 // license that can be found in the LICENSE file.
83 // we can allow quite large values here.
174 // Stop the world, so that we can take a consistent snapshot
178 // We are in stop-the-world, but syscalls can finish and write to trace concurrently.
191 // Can't set trace.enabled yet. While the world is stopped, exitsyscall could
265 // Stop the world so that we can collect the trace buffers from all p's below,
300 // Windows time can tick only every 15ms, wait for at least one tick.
313 // The world is started but we've set trace.shutdown, so new tracing can't start.
356 // allocation can call heap allocate, which will try to emit a trace
364 // because tracing can be enabled at runtime on prod servers
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
proc.go 3 // license that can be found in the LICENSE file.
22 // M must have an associated P to execute Go code, however it can be
41 // goroutine can be out of work the very next moment, we will need to park it.
67 // spinning->non-spinning thread transition. This transition can race with submission
69 // thread. If they both fail to do that, we can end up with semi-persistent CPU
92 // so all cgo calls can rely on it existing. When main_init is complete,
93 // it is closed, meaning cgocallbackg can reliably receive from it.
135 // Those can arrange for main.main to run in the main thread
290 // can't do anything that might move the G between Ms here.
295 // The goroutine can be made runnable again by calling goready(gp)
    [all...]
trace.go 3 // license that can be found in the LICENSE file.
83 // we can allow quite large values here.
174 // Stop the world, so that we can take a consistent snapshot
178 // We are in stop-the-world, but syscalls can finish and write to trace concurrently.
191 // Can't set trace.enabled yet. While the world is stopped, exitsyscall could
265 // Stop the world so that we can collect the trace buffers from all p's below,
300 // Windows time can tick only every 15ms, wait for at least one tick.
313 // The world is started but we've set trace.shutdown, so new tracing can't start.
356 // allocation can call heap allocate, which will try to emit a trace
364 // because tracing can be enabled at runtime on prod servers
    [all...]
  /external/libavc/encoder/arm/
ime_distortion_metrics_a9q.s 935 ldr r4, [sp, #84] @;Can be rearranged
    [all...]
  /external/libxml2/
runtest.c     [all...]
  /external/tensorflow/tensorflow/python/feature_column/
feature_column.py 26 * Continuous features can be represented by `numeric_column`.
27 * Categorical features can be represented by any `categorical_column_with_*`
39 Continuous features can be directly fed into deep neural network models.
55 Sparse features can be fed directly into linear models. They behave like an
68 Sparse features can be crossed (also known as conjuncted or combined) in
103 FeatureColumns can also be transformed into a generic input layer for
106 Example of building model using FeatureColumns, this can be used in a
177 'You can wrap a categorical column with an '
185 # a non-None `scope` can allow for variable reuse, when, e.g., this function
243 this dict. Values can be a `SparseTensor` or a `Tensor` depends o
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
exec.go 3 // license that can be found in the LICENSE file.
184 // same compiler settings and can reuse each other's results.
306 // TODO(rsc): Once we can cache multiple file outputs from an action,
307 // the header should be cached, and then this awful test can be deleted.
506 // so that we can reformat them relative to the directory
524 // We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
540 // so that we can add any missing mappings below.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
exec.go 3 // license that can be found in the LICENSE file.
184 // same compiler settings and can reuse each other's results.
306 // TODO(rsc): Once we can cache multiple file outputs from an action,
307 // the header should be cached, and then this awful test can be deleted.
506 // so that we can reformat them relative to the directory
524 // We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
540 // so that we can add any missing mappings below.
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go 3 // license that can be found in the LICENSE file.
34 // Since the liveness analysis can see initialization of single-word
261 // but only so that the instruction can write to the value.
663 // Annotate ambiguously live variables so that they can
739 // the only things that can possibly be live are the
814 // Can't put clobber code before the call to typedmemmove.
1008 // pointers later in the array so they can be GC'd.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go 3 // license that can be found in the LICENSE file.
34 // Since the liveness analysis can see initialization of single-word
261 // but only so that the instruction can write to the value.
663 // Annotate ambiguously live variables so that they can
739 // the only things that can possibly be live are the
814 // Can't put clobber code before the call to typedmemmove.
1008 // pointers later in the array so they can be GC'd.
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 83 /// Return a nil node (an empty but non-null node) that can hold
96 /// <para>You must specify the input stream so that the erroneous text can
120 /// can decide it is ok to move children to t via t.children = child.children;
181 /// For identifying trees. How to identify nodes so we can say "add node
241 /// <summary>Node constructors can set the type of a node </summary>
246 /// <summary>Node constructors can set the text of a node </summary>
256 /// store information that can lead you to the token, you can create
325 /// Can't replace whatever points to the parent externally. Do nothing.
364 /// If the stream does not buffer all the nodes then it can stil
    [all...]
  /external/brotli/js/
decode.min.js 1 window.BrotliDecode=function(){"use strict";function e(e){this.data=e,this.offset=0}function t(e){if(e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),0==S(e,1))return 16;var t=S(e,3);return 0!=t?17+t:0!=(t=S(e,3))?8+t:17}function i(e,i){if(0!=e.l)throw"State MUST be uninitialized";e.h=new Int32Array(6480),e.input=i,z(e);var n=t(e);if(9==n)throw"Invalid 'windowBits' code";e.p=1<<n,e.u=e.p-16,e.l=1}function n(e){if(0==e.l)throw"State MUST be initialized";11!=e.l&&(e.l=11,null!=e.input&&(e.input,e.input=null))}function a(e){if(e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),0!=S(e,1)){var t=S(e,3);return 0==t?1:S(e,t)+(1<<t)}return 0}function o(e){if(e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),e.m=S(e,1),e.g=0,e.P=0,e.$=0,0==e.m||0==S(e,1)){var t=S(e,2)+4;if(7==t){if(e.$=1,0!=S(e,1))throw"Corrupted reserved bit";var i=S(e,2);if(0==i)return;for(n=0;n<i;n++){if(e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),0==(a=S(e,8))&&n+1==i&&i>1)throw"Exuberant nibble";e.g|=a<<8*n}}else for(var n=0;n<t;n++){e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16);var a=S(e,4);if(0==a&&n+1==t&&t>4)throw"Exuberant nibble";e.g|=a<<4*n}e.g++,0==e.m&&(e.P=S(e,1))}}function r(e,t,i){var n=i.i>>>i.t,a=e[t+=255&n]>>16,o=65535&e[t];return a<=8?(i.t+=a,o):(t+=o,t+=(n&(1<<a)-1)>>>8,i.t+=8+(e[t]>>16),65535&e[t])}function s(e,t,i){i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16);var n=r(e,t,i),a=ee[n];return i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16),Z[n]+(a<=16?S(i,a):E(i,a))}function l(e,t,i){return e<16?(i+=_[e],i&=3,t[i]+G[e]):e-16+1}function c(e,t){for(var i=e[t];t>0;t--)e[t]=e[t-1];e[0]=i}function d(e,t){for(var i=new Int32Array(256),n=0;n<256;n++)i[n]=n;for(n=0;n<t;n++){var a=255&e[n];e[n]=i[a],0!=a&&c(i,a)}}function h(e,t,i,n){var a=0,o=8,r=0,s=0,l=32768,c=new Int32Array(32);for(q(c,0,5,e,18);a<t&&l>0;){n.s>2030&&I(n),n.t>=16&&(n.i=n.o[n.s++]<<16|n.i>>>16,n.t-=16);var d=n.i>>>n.t&31;n.t+=c[d]>>16;var h=65535&c[d];if(h<16)r=0,i[a++]=h,0!=h&&(o=h,l-=32768>>h);else{var f=h-14,p=0;16==h&&(p=o),s!=p&&(r=0,s=p);var u=r;r>0&&(r-=2,r<<=f),n.t>=16&&(n.i=n.o[n.s++]<<16|n.i>>>16,n.t-=16);var m=(r+=S(n,f)+3)-u;if(a+m>t)throw"symbol + repeatDelta > numSymbols";for(var g=0;g<m;g++)i[a++]=s;0!=s&&(l-=m<<15-s)}}if(0!=l)throw"Unused space";i.fill(0,a,t)}function f(e,t){for(var i=0;i<t-1;++i)for(var n=i+1;n<t;++n)if(e[i]==e[n])return 0;return 1}function p(e,t,i,n){var a,o=1;n.s>2030&&I(n);var r=new Int32Array(e);if(n.t>=16&&(n.i=n.o[n.s++]<<16|n.i>>>16,n.t-=16),1==(a=S(n,2))){for(var s=e-1,l=0,c=new Int32Array(4),d=S(n,2)+1;0!=s;)s>>=1,l++;for(g=0;g<d;g++)n.t>=16&&(n.i=n.o[n.s++]<<16|n.i>>>16,n.t-=16),c[g]=S(n,l)%e,r[c[g]]=2;switch(r[c[0]]=1,d){case 2:r[c[1]]=1;break;case 4:1==S(n,1)?(r[c[2]]=3,r[c[3]]=3):r[c[0]]=2}o=f(c,d)}else{for(var p=new Int32Array(18),u=32,m=0,g=a;g<18&&u>0;g++){var P=W[g];n.t>=16&&(n.i=n.o[n.s++]<<16|n.i>>>16,n.t-=16);var $=n.i>>>n.t&15;n.t+=J[$]>>16;var b=65535&J[$];p[P]=b,0!=b&&(u-=32>>b,m++)}0!=u&&1!=m&&(o=0),h(p,e,r,n)}if(0==o)throw"Can't readHuffmanCode";q(t,i,8,r,e)}function u(e,t,i){i.s>2030&&I(i);var n=a(i)+1;if(1==n)return t.fill(0,0,e),n;i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16);var o=0;0!=S(i,1)&&(o=S(i,4)+1);var s=new Int32Array(1080);p(n+o,s,0,i);for(var l=0;l<e;){i.s>2030&&I(i),i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16);var c=r(s,0,i);if(0==c)t[l]=0,l++;else if(c<=o){i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16);for(var h=(1<<c)+S(i,c);0!=h;){if(l>=e)throw"Corrupted context map";t[l]=0,l++,h--}}else t[l]=c-o,l++}return i.t>=16&&(i.i=i.o[i.s++]<<16|i.i>>>16,i.t-=16),1==S(i,1)&&d(t,e),n}function m(e,t,i){var n=e.v,a=4+2*t;e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16);var o=r(e.h,1080*t,e),l=s(e.h,1080*(t+3),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,l}function g(e){e.X=m(e,0,e.Y);var t=e.v[5];e.k=t<<6,e.C=255&e.j[e.k],e.A=e.q[e.C];var i=e.I[t];e.T=i<<9,e.S=e.T+256}function P(e){e.D=m(e,1,e.F),e.N=e.B[e.v[7]]}function $(e){e.M=m(e,2,e.U),e.H=e.v[9]<<2}function b(e){var t=e.p;if(t>e.R){for(var i=e.R;t>>1>i;)t>>=1;0==e.m&&t<16384&&e.p>=16384&&(t=16384)}if(!(t<=e.O)){var n=t+37,a=new Int8Array(n);0!=e.L.length&&a.set(e.L.subarray(0,0+e.O),0),e.L=a,e.O=t}}function v(e){if(0!=e.m)return e.W=10,e._=e.G,e.J=0,void(e.l=12);e.q=new Int32Array(0),e.B=new Int32Array(0),e.V=new Int32Array(0),e.s>2030&&I(e),o(e),0==e.g&&0==e.$||(0!=e.P||0!=e.$?(N(e),e.l=0!=e.$?4:5):e.l=2,0==e.$&&(e.R+=e.g,e.R>1<<30&&(e.R=1<<30),e.O<e.p&&b(e)))}function y(e,t,i){return i<=1?1<<28:(p(i+2,e.h,1080*t,e),p(26,e.h,1080*(t+3),e),s(e.h,1080*(t+3),e))}function X(e){e.Y=a(e)+1,e.X=y(e,0,e.Y),e.F=a(e)+1,e.D=y(e,1,e.F),e.U=a(e)+1,e.M=y(e,2,e.U),e.s>2030&&I(e),e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),e.K=S(e,2),e.Z=16+(S(e,4)<<e.K),e.ee=(1<<e.K)-1;var t=e.Z+(48<<e.K);e.I=new Int8Array(e.Y);for(var i=0;i<e.Y;){for(var n=R(i+96,e.Y);i<n;++i)e.t>=16&&(e.i=e.o[e.s++]<<16|e.i>>>16,e.t-=16),e.I[i]=S(e,2);e.s>2030&&I(e)}e.j=new Int8Array(e.Y<<6);var o=u(e.Y<<6,e.j,e);e.te=1;for(var r=0;r<e.Y<<6;r++)if(e.j[r]!=r>>6){e.te=0;break}e.ie=new Int8Array(e.U<<2);var s=u(e.U<<2,e.ie,e);e.q=Q(256,o,e),e.B=Q(704,e.F,e),e.V=Q(t,s,e),e.k=0,e.H=0,e.T=e.I[0]<<9,e.S=e.T+256,e.C=0,e.A=e.q[0],e.N=e.B[0],e.v[4]=1,e.v[5]=0,e.v[6]=1,e.v[7]=0,e.v[8]=1,e.v[9]=0}function w(e){var t=e.L;if(e.g<=0)return F(e),void(e.l=1);var i=R(e.O-e.G,e.g);if(M(e,t,e.G,i),e.g-=i,e.G+=i,e.G==e.O)return e.W=5,e._=e.O,e.J=0,void(e.l=12);F(e),e.l=1}function Y(e){var t=R(e.ne-e.ae,e._-e.J);return 0!=t&&(e.oe.set(e.L.subarray(e.J,e.J+t),e.re+e.ae),e.ae+=t,e.J+=t),e.ae<e.ne?1:0}function Q(e,t,i){for(var n=new Int32Array(t+1080*t),a=t,o=0;o<t;o++)n[o]=a,p(e,n,a,i),a+=1080;return n}function k(e){if(0==e.l)throw"Can't decompress until initialized";if(11==e.l)throw"Can't decompress after close";for(var t=e.O-1,i=e.L;10!=e.l;)switch(e.l){case 1:if(e.g<0)throw"Invalid (…)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 3 // license that can be found in the LICENSE file.
310 // from a particular group or repetitions of a given prefix, can be used on
314 // and the instruction is not one of the instructions that can be used with
321 // conflict with each other: only one segment can be in effect.
354 // but according to AMD both can be present.
658 // so that it can be used to pick off special cases before
764 // case F3 can be a modified on an F2 special meaning.
1104 // TODO(rsc): Can address be 64 bits?
1144 // can be used in place of a REX prefix in order to access
    [all...]
  /prebuilts/go/darwin-x86/src/os/
os_test.go 3 // license that can be found in the LICENSE file.
1041 t.Fatalf("Can't find pwd: %v", err)
1137 // On NFS, timings can be off due to caching of meta-data on
1151 // On NFS, timings can be off due to caching of meta-data on
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 3 // license that can be found in the LICENSE file.
310 // from a particular group or repetitions of a given prefix, can be used on
314 // and the instruction is not one of the instructions that can be used with
321 // conflict with each other: only one segment can be in effect.
354 // but according to AMD both can be present.
658 // so that it can be used to pick off special cases before
764 // case F3 can be a modified on an F2 special meaning.
1104 // TODO(rsc): Can address be 64 bits?
1144 // can be used in place of a REX prefix in order to access
    [all...]
  /prebuilts/go/linux-x86/src/os/
os_test.go 3 // license that can be found in the LICENSE file.
1041 t.Fatalf("Can't find pwd: %v", err)
1137 // On NFS, timings can be off due to caching of meta-data on
1151 // On NFS, timings can be off due to caching of meta-data on
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql_test.go 3 // license that can be found in the LICENSE file.
156 // their statements first, then we can safely
964 {[]interface{}{"Brad", "strconv fail"}, `sql: converting argument $2 type: sql/driver: value "strconv fail" can't be converted to int32`},
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql_test.go 3 // license that can be found in the LICENSE file.
156 // their statements first, then we can safely
964 {[]interface{}{"Brad", "strconv fail"}, `sql: converting argument $2 type: sql/driver: value "strconv fail" can't be converted to int32`},
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-tic54x.c 7 GAS is free software; you can redistribute it and/or modify
138 /* Characters that can be used to separate mantissa from exp in FP
191 /* Keep track of local labels so we can substitute them before GAS sees them
587 /* Keep track of stag fields so that when structures are nested we can add the
1074 .def means the symbol is defined in the current module and can be accessed
1084 I can't identify any difference in how the "other" c54x assembler treats
    [all...]

Completed in 1768 milliseconds

<<1112