HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 801 - 825 of 2162) sorted by null

<<31323334353637383940>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 349 PrivateKeyInfo in = PrivateKeyInfo.getInstance(encoded); local
351 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
359 throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 448 PrivateKeyInfo in = PrivateKeyInfo.getInstance(encoded); local
450 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
458 throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
  /external/chromium_org/chrome/browser/prefs/
prefs_syncable_service_unittest.cc 3 // found in the LICENSE file.
269 syncer::SyncDataList in; local
271 AddToRemoteDataList(prefs::kHomePage, base::StringValue(kExampleUrl1), &in);
275 AddToRemoteDataList(prefs::kURLsToRestoreOnStartup, urls_to_restore, &in);
278 &in);
279 InitWithSyncDataTakeOutput(in, &out);
304 syncer::SyncDataList in; local
310 &in);
311 InitWithSyncDataTakeOutput(in, &out);
345 syncer::SyncDataList in; local
389 syncer::SyncDataList in; local
440 syncer::SyncDataList in; local
588 syncer::SyncDataList in; local
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
73 /* in and out are the underlying buffers to be used with lzma_stream. */
74 u_char in[BUFSIZ]; member in struct:__anon10260
80 /* read_out points to the first byte in out not yet consumed by an
81 * xzread call. read_out_len tracks the amount of data available in
    [all...]
  /external/chromium_org/content/browser/
byte_stream.cc 3 // found in the LICENSE file.
25 // cleared in an object destructor and accessed to check for object
45 // happen in the context of their SequencedTaskRunner.
79 // All data objects in this class are only valid to access on
162 // Time of last point at which data in stream transitioned from full
290 // Valid contexts in which to call.
457 ByteStreamWriterImpl* in = new ByteStreamWriterImpl( local
462 in->SetPeer(out, output_task_runner, output_flag);
463 out->SetPeer(in, input_task_runner, input_flag);
464 input->reset(in);
    [all...]
  /external/chromium_org/ipc/
ipc_send_fds_test.cc 3 // found in the LICENSE file.
235 IPC::ChannelHandle in_handle("IN");
236 in = IPC::Channel::CreateServer(in_handle, &null_listener_);
238 in->TakeClientFileDescriptor(), false);
245 base::Bind(&PipeChannelHelper::Connect, in.get()));
262 base::Bind(&PipeChannelHelper::DestroyChannel, &in, &a));
283 ASSERT_TRUE(in->Send(message));
287 scoped_ptr<IPC::Channel> in, out; member in class:__anon12590::PipeChannelHelper
302 // in flight at the same time. For more info on the bug, see:
345 // Unless the workaround is in place. With 10000 sends, w
    [all...]
  /external/chromium_org/net/quic/crypto/
cert_compressor.cc 3 // found in the LICENSE file.
21 // in order to help zlib. This was generated via a fairly dumb algorithm from
150 // CertEntry represents a certificate in compressed form. Each entry is one of
151 // the three types enumerated in |Type|.
155 // Type 0 is reserved to mean "end of list" in the wire format.
157 // COMPRESSED means that the certificate is included in the trailing zlib
161 // be replaced by its 64-bit hash (in |hash|).
163 // COMMON means that the certificate is in a common certificate set known
177 // 64-bit, FNV-1a hashes in |client_cached_cert_hashes|.
233 // CertEntriesSize returns the size, in bytes, of the serialised form o
341 StringPiece in = *in_out; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComponentTransfer.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
155 FilterEffect* in = inputEffect(0); local
160 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore);
168 IntRect destRect = drawingRegionOfInputImage(in->absolutePaintRect());
FEComposite.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
251 // 'in' has output only in the intersection of both inputs.
255 // 'atop' has output only in the extents of the second input.
294 FilterEffect* in = inputEffect(0); local
302 IntRect effectADrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect());
303 RefPtr<Uint8ClampedArray> srcPixelArray = in->asPremultipliedImage(effectADrawingRect);
317 ImageBuffer* imageBuffer = in->asImageBuffer();
325 filterContext->drawImageBuffer(imageBuffer, drawingRegionOfInputImage(in->absolutePaintRect()))
    [all...]
FEDisplacementMap.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
102 // and does not apply to the 'in' source image. The 'in' source image must remain in its
104 // The result is in that smae color space because it is a displacement of the 'in' image.
108 void FEDisplacementMap::transformResultColorSpace(FilterEffect* in, const int index)
112 in->transformResultColorSpace(operatingColorSpace());
117 FilterEffect* in = inputEffect(0) local
    [all...]
  /external/chromium_org/third_party/angle/samples/translator/
translator.cpp 4 // found in the LICENSE file.
216 "Where: filename : filename ending in .frag or .vert\n"
222 " -e : emulate certain built-in functions (workaround for driver bugs)\n"
239 // Deduce the shader type from the filename. Files must end in one of the
352 FILE* in = fopen(fileName, "rb"); local
353 if (!in) {
359 fseek(in, 0, SEEK_END);
360 size_t count = ftell(in);
361 rewind(in);
366 // It is there to handle empty files in which case a single empt
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 21 /* All functions are declared in freetype.h. */
36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
48 /* documentation is in ftoutln.h */
68 FT_Int n; /* index of contour in outline */
69 FT_UInt first; /* index of first point in contour */
85 FT_Int last; /* index of last point in contour */
334 /* documentation is in ftoutln.h */
350 /* documentation is in ftoutln.h */
395 /* documentation is in ftoutln.h */
450 /* documentation is in ftoutln.h *
932 FT_Vector in, out, shift; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
punycode.c 31 and distribute it in any way that does not diminish the rights
85 * (when used for representing integers) is d, which must be in the
87 * nonzero, in which case the uppercase form is used.
106 * point (for use in representing integers) in the range 0 to
153 * The following code omits the {parts} of the pseudo-algorithm in the spec
200 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
376 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
436 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */)
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
spreptst.c 108 const char *in; member in struct:ConformanceTestCases
324 const char* src = conformanceTestCases[i].in;
353 understood universally, rather than in the context of a particular
376 appended "@" and should appear in the form "xxxx@" (note: no domain
411 "\\u0c15\\u0c36\\u0c30\\u0c2c\\u0c3e\\u0c26@cs7.dillons.co.uk.203.119.193.in-addr.arpa",
  /external/chromium_org/third_party/icu/source/tools/icuswap/
icuswap.cpp 105 FILE *in, *out; local
120 fprintf(stderr, "Warning: icuswap is an obsolete tool and it will be removed in the next ICU release.\nPlease use the icupkg tool instead.\n");
162 in=out=NULL;
166 in=fopen(argv[1], "rb");
167 if(in==NULL) {
173 length=fileSize(in);
196 if(length!=(int32_t)fread(data, 1, length, in)) {
202 fclose(in);
203 in=NULL;
205 /* swap the data in-place *
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_gencmn.c 46 All item names are stored as char * strings in one block between the ToC table
53 The data items are stored in the sorted order of their names.
122 FileStream *in, *file; local
140 in = T_FileStream_stdin();
142 in = T_FileStream_open(dataFile, "r");
143 if(in == NULL) {
158 while(T_FileStream_readLine(in, line, sizeof(line))!=NULL) {
187 if(in!=T_FileStream_stdin()) {
188 T_FileStream_close(in);
192 fprintf(stderr, "gencmn: no files listed in %s\n", dataFile == NULL ? "<stdin>" : dataFile)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
nat_unittest.cc 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
72 TestClient* in = CreateTestClient(natsf, internal_addr); local
83 in->SendTo(buf, len, out[0]->address());
88 in->SendTo(buf, len, out[i]->address());
102 delete in;
123 TestClient* in = CreateTestClient(natsf, internal_addr); local
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 4 // you may not use this file except in compliance with the License.
9 // Unless required by applicable law or agreed to in writing, software
60 // was not interchange valid. This indicates a bug in the caller, and
61 // a LOG(WARNING) is done in that case.
65 // than one byte in UTF8. E.g., "\xEF\xB7\x90" (U+FDD0) is
70 // reads, it is safe to change the buffer in place. It returns the
72 char* const in = start; local
98 return out - in;
131 // Clear the memory in the expanded part.
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_resize.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
467 const uint8_t *const in = (s == 0 ? input : out); local
473 down2_symodd(in, filteredlength, out);
475 down2_symeven(in, filteredlength, out);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vs.h 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
58 struct draw_variant_input in; member in struct:draw_variant_element
132 /* Run the shader - this interface will get cleaned up in the
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
56 typedef void (*unary_func_t)(float *out, const float *in);
86 * Required precision in bits.
301 float *in, *out; local
303 in = align_malloc(length * 4, length * 4)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
134 Edge *in; member in class:nv50_ir::Graph::Node
190 assert(in);
191 return in->origin;
214 return EdgeIterator(in, 1, reverse)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_program.h 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71 struct nv50_varying in[16]; member in struct:nv50_program
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_framebuffer.c 6 * files (the "Software"), to deal in the Software without
13 * included in all copies or substantial portions of the Software.
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53 * dirty, to ensure that the resources are paged in.
104 * non-dirty rendertargets are properly paged-in.
260 float in = fb_height - fy; /* number of vp pixels inside view */ local
262 prescale.translate[1] += fy * out / in;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial portions
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
94 "DCL IN[0], POSITION, LINEAR\n"
95 "DCL IN[1], GENERIC[0], PERSPECTIVE\n"
131 struct ureg_src in[2]; local
171 in[0] = ureg_DECL_fs_input(ureg
    [all...]

Completed in 1003 milliseconds

<<31323334353637383940>>