/external/mesa3d/src/mesa/math/ |
m_debug_clip.c | 21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 75 const GLfloat *from = (GLfloat *)clip_vec->start; local 81 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) { 82 const GLfloat cx = from[0]; 83 const GLfloat cy = from[1]; 84 const GLfloat cz = from[2]; 85 const GLfloat cw = from[3]; 133 const GLfloat *from = (GLfloat *)clip_vec->start; local 138 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) { 139 const GLfloat cx = from[0], cy = from[1], cz = from[2] 168 const GLfloat *from = (GLfloat *)clip_vec->start; local [all...] |
m_xform_tmp.h | 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 50 * them from the vertex array interface. 79 GLfloat *from = from_vec->start; local 88 const GLfloat ox = from[0]; 105 GLfloat *from = from_vec->start; local 112 to[i][0] = from[0]; 125 GLfloat *from = from_vec->start; local 132 const GLfloat ox = from[0]; 147 GLfloat *from = from_vec->start; local 153 const GLfloat ox = from[0] 168 GLfloat *from = from_vec->start; local 192 GLfloat *from = from_vec->start; local 215 GLfloat *from = from_vec->start; local 245 GLfloat *from = from_vec->start; local 271 GLfloat *from = from_vec->start; local 292 GLfloat *from = from_vec->start; local 314 GLfloat *from = from_vec->start; local 335 GLfloat *from = from_vec->start; local 362 GLfloat *from = from_vec->start; local 391 GLfloat *from = from_vec->start; local 416 GLfloat *from = from_vec->start; local 442 GLfloat *from = from_vec->start; local 464 GLfloat *from = from_vec->start; local 487 GLfloat *from = from_vec->start; local 509 GLfloat *from = from_vec->start; local 535 GLfloat *from = from_vec->start; local 558 GLfloat *from = from_vec->start; local 584 GLfloat *from = from_vec->start; local 610 GLfloat *from = from_vec->start; local 633 GLfloat *from = from_vec->start; local 657 GLfloat *from = from_vec->start; local 680 GLfloat *from = from_vec->start; local 705 GLfloat *from = from_vec->start; local 729 GLfloat *from = from_vec->start; local [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
QuicktimeTextTrackImpl.java | 68 long silentTime = sub.from - lastEnd; 97 long silentTime = sub.from - lastEnd; 103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from)); 131 long from; field in class:QuicktimeTextTrackImpl.Line 136 public Line(long from, long to, String text) { 137 this.from = from; 143 return from;
|
TextTrackImpl.java | 71 long silentTime = sub.from - lastEnd; 100 long silentTime = sub.from - lastEnd; 106 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from)); 134 long from; field in class:TextTrackImpl.Line 139 public Line(long from, long to, String text) { 140 this.from = from; 146 return from;
|
/external/openssh/ |
canohost.c | 50 struct sockaddr_storage from; local 56 fromlen = sizeof(from); 57 memset(&from, 0, sizeof(from)); 58 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) { 63 if (from.ss_family == AF_INET) 66 ipv64_normalise_mapped(&from, &fromlen); 68 if (from.ss_family == AF_INET6) 71 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop), 80 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name) 374 struct sockaddr_storage from; local [all...] |
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
fx_zlib_inflate.c | 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6 19 * - Remove unnecessary second byte pull from length extra in inffast.c 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to 153 /* extract wrap request from windowBits parameter */ 253 fixed code decoding. Normally this returns fixed tables from inffixed.h. 375 upon return from inflate(), and since all distances after the first 32K of 469 /* Restore state from registers in inflate() */ 487 /* Get a byte of input into the bit accumulator, or return from inflate() 498 not enough available input to do that, then return from inflate(). * 617 unsigned char FAR *from; \/* where to copy match bytes from *\/ local [all...] |
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmserr.c | 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 194 // Auxiliar to fill memory management functions from plugin (or context 0 defaults) 507 void* from; local 510 from = src ->chunks[Logger]; 513 from = &LogErrorChunk; 516 ctx ->chunks[Logger] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsLogErrorChunkType)); 628 void* from; local 631 from = src ->chunks[MutexPlugin]; 634 from = &MutexChunk; 637 ctx ->chunks[MutexPlugin] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsMutexPluginChunkType)); [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSimpleCursorAdapter.java | 35 * An easy adapter to map columns from a cursor to TextViews or ImageViews 64 * This field should be made private, so it is hidden from the SDK. 70 * This field should be made private, so it is hidden from the SDK. 89 * @param from A list of column names representing the data to bind to the UI. Can be null 91 * @param to The views that should display column in the "from" parameter. 93 * are given the values of the first N columns in the from 96 public void __constructor__(Context context, int layout, Cursor c, String[] from, int[] to) { 99 mOriginalFrom = from; 100 findColumns(from); 106 * "from" parameter 131 final int[] from = mFrom; local [all...] |
/external/skia/src/animator/ |
SkAnimateActive.cpp | 278 SkOperand* from = animate->getValues(); local 292 setInterpolator(index, from); 304 SkOperand* from = animate->getValues(); local 305 SkOperand* to = &from[animate->components()]; 312 SkScalar delta = to[cIndex].fScalar - from[cIndex].fScalar; 370 void SkActive::setInterpolator(int index, SkOperand* from) { 371 if (from == NULL) // legitimate for set string 384 interpolator.setKeyFrame(0, 0, from, animate->blend[0]); 385 interpolator.setKeyFrame(1, duration, from, animate->blend[0]); 390 interpolator.setKeyFrame(entry, entry * duration / (entries - 1), from, [all...] |
/external/srtp/crypto/math/ |
datatypes.c | 29 * from this software without specific prior written permission. 155 return -1; /* this keeps compilers from complaining */ 329 int i, from; local 339 /* copy each word from left size to right side */ 348 from = i-1 - base_index; 349 b = x->v32[from] << bit_index; 350 if (from > 0) 351 b |= x->v32[from-1] >> (32-bit_index); 530 * From RFC 1521: The Base64 Alphabet
|
/external/toybox/scripts/ |
config2help.c | 69 // Sets *from to where dash lines removed from (in case they weren't). 72 // If no prefix, *help NULL. If no postfix, *from == *help 73 // if no dashlines returned *from == *help. 75 char **grab_dashlines(struct double_list **help, struct double_list **from, 84 *from = *help; 88 s = trim((*from)->data); 94 *from = (*from)->next; 95 if (*from == *help) return 0 323 char *from = this+2, *to = that+2; local [all...] |
/external/v8/src/ |
cpu-profiler.h | 62 Address from; member in class:v8::internal::CodeMoveEventRecord 80 Address from; member in class:v8::internal::SharedFunctionInfoMoveEventRecord 98 // The parameterless constructor is used when we dequeue data from 154 // Called from events processing thread (Run() method.) 213 // Invoked from stack sampler (thread or signal handler.) 234 virtual void CodeMoveEvent(Address from, Address to); 236 virtual void CodeDeleteEvent(Address from); 240 virtual void SharedFunctionInfoMoveEvent(Address from, Address to);
|
interpreter-irregexp.cc | 25 int from, 30 unibrow::uchar old_char = subject[from++]; 46 int from, 51 unsigned int old_char = subject[from++]; 422 uint32_t from = Load16Aligned(pc + 4); local 424 if (from <= current_char && current_char <= to) { 432 uint32_t from = Load16Aligned(pc + 4); local 434 if (from > current_char || current_char > to) { 500 int from = registers[insn >> BYTECODE_SHIFT]; local 501 int len = registers[(insn >> BYTECODE_SHIFT) + 1] - from; 524 int from = registers[insn >> BYTECODE_SHIFT]; local [all...] |
v8threads.cc | 138 char* from = state->data(); local 139 from = isolate_->handle_scope_implementer()->RestoreThread(from); 140 from = isolate_->RestoreThread(from); 141 from = Relocatable::RestoreState(isolate_, from); 142 from = isolate_->debug()->RestoreDebug(from); 143 from = isolate_->stack_guard()->RestoreStackGuard(from) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface_udp.c | 29 * ctrl_iface_udp.c and should not be touched directly from other files. 59 struct sockaddr_in6 *from, 61 struct sockaddr_in *from, 73 os_memcpy(&dst->addr, from, sizeof(*from)); 80 inet_ntop(AF_INET6, &from->sin6_addr, addr, sizeof(*from)), 81 ntohs(from->sin6_port)); 84 inet_ntoa(from->sin_addr), ntohs(from->sin_port)) 205 struct sockaddr_in6 from; local 210 struct sockaddr_in from; local 549 struct sockaddr_in from; local [all...] |
ctrl_iface_unix.c | 35 * ctrl_iface_unix.c and should not be touched directly from other files. 76 struct sockaddr_un *from, 85 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un)); 90 (u8 *) from->sun_path, 99 struct sockaddr_un *from, 106 os_memcmp(from->sun_path, dst->addr.sun_path, 111 (u8 *) from->sun_path, 126 struct sockaddr_un *from, 136 os_memcmp(from->sun_path, dst->addr.sun_path, 142 (u8 *) from->sun_path, fromlen 161 struct sockaddr_un from; local 766 struct sockaddr_un from; local 826 struct sockaddr_un from; local [all...] |
/external/zlib/src/contrib/blast/ |
blast.c | 58 * Return need bits from the input stream. This always leaves less than 63 * - Bits are stored in bytes from the least significant bit to the most 64 * significant bit. Therefore bits are dropped from the bottom of the bit 105 * Decode a code from the stream s using huffman table h. Return the symbol or 114 * bits are pulled from the compressed data one at a time and used to 115 * build the code value reversed from what is in the stream in order to 132 int bitbuf; /* bits from stream */ 219 left -= h->count[len]; /* deduct count from possible codes */ 265 * copy is from distance bytes back in the output stream, copying for length 286 unsigned char *from, *to; /* copy pointers * local [all...] |
/external/zlib/src/contrib/infback9/ |
infback9.c | 124 then return a Z_BUF_ERROR from inflateBack(). */ 137 /* Get a byte of input into the bit accumulator, or return from inflateBack() 148 not enough available input to do that, then return from inflateBack() with 160 /* Remove n bits from the bit accumulator */ 175 if it's full. If the write fails, return from inflateBack() with a 237 unsigned long offset; /* distance back to copy string from */ 239 unsigned char FAR *from; /* where to copy match bytes from */ local 326 /* copy stored block from input to output */ 560 /* copy match from window to output * [all...] |
/external/zlib/src/examples/ |
gzappend.c | 8 arising from the use of this software. 20 3. This notice may not be removed or altered from any source distribution. 47 gzappend takes a gzip file and appends to it, compressing files from the 48 command line or data from stdin. The gzip file is written to directly, to 53 zlib 1.2.x's inflate() function. This option returns from inflate() at each 71 data from the gzip file to initialize the dictionary. If the total 74 last bits from the original deflate stream. From here on, the data to 127 unsigned char *start, *last, *to, *from; local 156 start = from = list + cycles; /* start index is arbitrary * [all...] |
/external/zlib/src/ |
inflate.c | 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6 19 * - Remove unnecessary second byte pull from length extra in inffast.c 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to 153 /* extract wrap request from windowBits parameter */ 253 fixed code decoding. Normally this returns fixed tables from inffixed.h. 375 upon return from inflate(), and since all distances after the first 32K of 469 /* Restore state from registers in inflate() */ 487 /* Get a byte of input into the bit accumulator, or return from inflate() 498 not enough available input to do that, then return from inflate(). * 617 unsigned char FAR *from; \/* where to copy match bytes from *\/ local [all...] |
/frameworks/base/core/java/android/net/ |
NetworkPolicyManager.java | 94 public static NetworkPolicyManager from(Context context) { method in class:NetworkPolicyManager
|
/frameworks/base/core/java/android/transition/ |
TransitionInflater.java | 40 * This class inflates scenes and transitions from resource files. 61 * Obtains the TransitionInflater from the given context. 63 public static TransitionInflater from(Context context) { method in class:TransitionInflater 68 * Loads a {@link Transition} object from a resource 96 * Loads a {@link TransitionManager} object from a resource
|
/frameworks/base/core/java/android/widget/ |
SimpleAdapter.java | 37 * defines the views used to display the row, and a mapping from keys in the Map to specific 78 * "from" 81 * @param from A list of column names that will be added to the Map associated with each 83 * @param to The views that should display column in the "from" parameter. These should all be 85 * in the from parameter. 88 @LayoutRes int resource, String[] from, @IdRes int[] to) { 91 mFrom = from; 156 * {@code null} to use the theme from the adapter's context 167 mDropDownInflater = LayoutInflater.from(context); 189 final String[] from = mFrom local [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
Sms7BitEncodingTranslator.java | 46 private static final String XML_FROM_TAG = "from"; 173 * Load the whole translation table file from the framework resource 208 int from = parser.getAttributeUnsignedIntValue(null, local 212 if ((from != -1) && (to != -1)) { 214 Rlog.d(TAG, "Loading mapping " + Integer.toHexString(from) 218 mTranslationTable.put (from, to);
|
/frameworks/support/v4/java/android/support/v4/hardware/fingerprint/ |
FingerprintManagerCompat.java | 42 public static FingerprintManagerCompat from(Context context) { method in class:FingerprintManagerCompat 147 * Container for callback data from {@link FingerprintManagerCompat#authenticate(CryptoObject,
|