/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_decode_sequence_ex.c | 36 void *data; local 83 /* ok read data */ 89 data = list[i].data; 99 if ((err = der_decode_boolean(in + x, z, ((int *)data))) != CRYPT_OK) { 109 if ((err = der_decode_integer(in + x, z, data)) != CRYPT_OK) { 113 if ((err = der_length_integer(data, &z)) != CRYPT_OK) { 120 if ((err = der_decode_short_integer(in + x, z, data)) != CRYPT_OK) { 124 if ((err = der_length_short_integer(((unsigned long*)data)[0], &z)) != CRYPT_OK) { 132 if ((err = der_decode_bit_string(in + x, z, data, &size)) != CRYPT_OK) [all...] |
/external/harfbuzz_ng/src/ |
hb-shaper-private.hh | 61 /* Means: succeeded, but don't need to keep any data. */ 66 #define HB_SHAPER_DATA_IS_INVALID(data) ((void *) (data) == HB_SHAPER_DATA_INVALID) 79 HB_SHAPER_DATA_DESTROY_FUNC (shaper, object) (HB_SHAPER_DATA_TYPE (shaper, object) *data) 92 HB_SHAPER_DATA_TYPE (shaper, object) *data = (HB_SHAPER_DATA_TYPE (shaper, object) *) hb_atomic_ptr_get (&HB_SHAPER_DATA (shaper, object)); \ 93 if (unlikely (!data)) { \ 94 data = HB_SHAPER_DATA_CREATE_FUNC (shaper, object) (object); \ 95 if (unlikely (!data)) \ 96 data = (HB_SHAPER_DATA_TYPE (shaper, object) *) HB_SHAPER_DATA_INVALID; \ 97 if (!hb_atomic_ptr_cmpexch (&HB_SHAPER_DATA (shaper, object), NULL, data)) { \ [all...] |
/external/icu4c/test/testdata/ |
readme.txt | 8 This directory contains data files used to test International Collectanea for Unicode.
|
/external/icu4c/tools/gencmn/ |
gencmn.8.in | 12 \- generate an ICU memory-mappable data file 47 takes a set of files and packages them as an ICU memory-mappable data 48 file. The resulting data file can then be used directly by ICU. 69 Include the ICU copyright notice in the resulting data. 74 in the resulting data instead of the ICU copyright notice. 83 Set the data name to 90 the endianness of the data (the letter 92 indicated big endian data, and the letter 99 as the type of the data. This type is also used as the extension of 100 the generated data file. The default type i [all...] |
/external/icu4c/tools/toolutil/ |
pkg_imp.h | 16 * Implementation definitions for data package functions in toolutil. 25 * Read an ICU data item with any platform type, 28 * All data remains in its platform type. 31 getDataInfo(const uint8_t *data, int32_t length,
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
Vector3Serializer.java | 14 public Vector3f readObject(ByteBuffer data, Class c) throws IOException { 16 vec3.x = data.getFloat(); 17 vec3.y = data.getFloat(); 18 vec3.z = data.getFloat();
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DataContext.java | 17 package com.google.clearsilver.jsilver.data; 22 * Manages the global Data object and local variable mappings during rendering. 27 * Returns the main Data object this RenderingContext was defined with. 29 Data getRootData(); 32 * Creates a new Data object to hold local references, pushes it onto the variable map stack. This 39 * Removes the most recent Data object added to the local variable map stack. 69 * requiring loops create a full Data tree. 74 * {@link com.google.clearsilver.jsilver.data.Data#isFirstSibling} 76 * {@link com.google.clearsilver.jsilver.data.Data#isLastSibling [all...] |
DefaultData.java | 17 package com.google.clearsilver.jsilver.data; 20 * Default implementation of Data. 22 * If you're not sure what Data implementation to use, just use this one - it will be a sensible 25 * @see Data
|
/external/kernel-headers/original/asm-arm/ |
a.out.h | 11 __u32 a_data; /* length of data, in bytes */ 12 __u32 a_bss; /* length of uninitialized data area for file, in bytes */ 13 __u32 a_syms; /* length of symbol table data in file, in bytes */ 16 __u32 a_drsize; /* length of relocation info for data, in bytes */
|
/external/kernel-headers/original/asm-mips/ |
a.out.h | 20 unsigned a_data; /* length of data, in bytes */ 21 unsigned a_bss; /* length of uninitialized data area for 23 unsigned a_syms; /* length of symbol table data in file, 28 unsigned a_drsize; /* length of relocation info for data, in bytes */
|
/external/kernel-headers/original/asm-x86/ |
a.out.h | 8 unsigned a_data; /* length of data, in bytes */ 9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */ 10 unsigned a_syms; /* length of symbol table data in file, in bytes */ 13 unsigned a_drsize; /* length of relocation info for data, in bytes */
|
/external/libvorbis/test/ |
util.h | 20 /* Create simple test data consisting of a windowed sine wave. */ 21 void gen_windowed_sine (float *data, int len, float maximum) ; 23 /* Set len values of data array to given value. */ 24 void set_data_in (float * data, unsigned len, float value) ;
|
/external/llvm/test/MC/AsmParser/ |
directive_incbin.s | 3 .data
|
/external/llvm/test/TableGen/ |
GeneralList.td | 4 // Test to make sure that lists work with any data-type
|
/external/mockito/src/org/mockito/internal/verification/api/ |
VerificationInOrderMode.java | 9 void verifyInOrder(VerificationDataInOrder data);
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_CreateRGBSurfaceFrom.3 | 3 SDL_CreateRGBSurfaceFrom \- Create an SDL_Surface from pixel data 11 Creates an SDL_Surface from the provided pixel data\&. 13 The data stored in \fBpixels\fR is assumed to be of the \fBdepth\fR specified in the parameter list\&. The pixel data is not copied into the \fBSDL_Surface\fR structure so it should not be freed until the surface has been freed with a called to \fISDL_FreeSurface\fR\&. \fBpitch\fR is the length of each scanline in bytes\&.
|
/external/qemu/ |
shaper.c | 21 _packet_is_internal( const uint8_t* data, size_t size ) 23 const uint8_t* end = data + size; 26 if (data + 40 > end) 29 if (data[12] != 0x08 || data[13] != 0x00 ) 33 data += 14; 34 if ((data[0] >> 4) != 4 || (data[0] & 15) < 5) 38 return ( data[12] == 10 && data[16] == 10) 59 void* data; member in struct:QueuedPacketRec_ 339 const uint8_t* data = (const uint8_t*)_data; local [all...] |
/external/skia/legacy/src/pipe/ |
SkGPipePriv.h | 33 kSkip_DrawOp, // skip an addition N bytes (N == data) 77 * DrawOp:8 - Flags:4 - Data:20 79 * Flags and Data are called out separately, so we can reuse Data between 80 * different Ops that might have different Flags. e.g. Data might be a Paint 83 * All Ops that take a SkPaint use their Data field to store the index to 107 static uint32_t DrawOp_packOpFlagData(DrawOps op, unsigned flags, unsigned data) { 110 SkASSERT(0 == (data & ~DRAWOPS_DATA_MASK)); 114 data; 157 kFlatIndex_PaintOp, // flags=paintflat, data=inde [all...] |
/external/skia/src/utils/ios/ |
SkStream_NSData.mm | 28 SkStream_NSData::SkStream_NSData(NSData* data) { 29 fNSData = data; 41 NSData* data = NSData_dataFromResource(name, suffix); 42 return SkNEW_ARGS(SkStream_NSData, (data));
|
/external/smack/src/org/xbill/DNS/ |
SetResponse.java | 29 * The Zone contains the name, but no data of the requested type, 30 * or the Cache has determined that the name exists and has no data 63 private Object data; field in class:SetResponse 72 this.data = rrset; 79 this.data = null; 97 sr.data = null; 106 if (data == null) 107 data = new ArrayList(); 108 List l = (List) data; 159 List l = (List) data; [all...] |
/external/stressapptest/src/ |
pattern.h | 18 // data patterns. 34 // Pattern and CRC data structure 37 unsigned int *pat; // Data array. 38 unsigned int mask; // Size - 1. data[index & mask] is always valid. 48 // Data structure to access data patterns. 53 // Fill pattern data and calculate CRC. 59 // Access data members. 63 unsigned int data = pattern_->pat[(offset >> busshift_) & pattern_->mask]; local 65 data = ~data [all...] |
/external/timezonepicker-support/ |
Readme | 1 The time zone data files come from http://www.iana.org/time-zones.
|
/external/v8/test/cctest/ |
test-sockets.cc | 32 char* data() { return data_; } function in class:SocketListenerThread 63 // Read the expected niumber of bytes of data. 71 static bool SendAll(Socket* socket, const char* data, int len) { 74 int status = socket->Send(data, len); 84 static void SendAndReceive(int port, char *data, int len) { 99 // Connect and write some data. 105 // Send all the data. 106 ok = SendAll(client, data, len); 109 // Wait until data is received. 112 // Check that data received is the same as data send [all...] |
/external/valgrind/main/gdbserver_tests/ |
mcclean_after_fork.stderrB.exp | 1 relaying data between gdb and process ....
|
/external/webkit/LayoutTests/fast/encoding/ |
bracket-in-tag-expected.txt | 2 This test baselines charset sniffer behavior where the opening bracket inside a tag is consumed as part of the tag data, causing the meta tag to be missed.
|