| /external/mesa3d/src/mesa/main/ |
| errors.c | 55 #define source_is(s, kind) enum_is(s, SOURCE, kind) 173 * 'source', 'type', and 'severity' are array indices like TYPE_ERROR, 177 get_message_state(struct gl_context *ctx, int source, int type, 181 &ctx->Debug.ClientIDs.Namespaces[source][type]; 197 if (ctx->Debug.ClientIDs.Defaults[severity][source][type]) 225 * 'source' and 'type' are array indices like TYPE_ERROR, not GL enums. 228 set_message_state(struct gl_context *ctx, int source, int type, 232 &ctx->Debug.ClientIDs.Namespaces[source][type]; 265 should_log(struct gl_context *ctx, GLenum source, GLenum type, 268 if (source == GL_DEBUG_SOURCE_APPLICATION_ARB | 655 int source, type, severity; local 1088 GLenum source = GL_DEBUG_SOURCE_SHADER_COMPILER_ARB, local [all...] |
| shaderapi.c | 140 * \param src the strings source 635 *params = shader->Source ? strlen((char *) shader->Source) + 1 : 0; 672 * Return shader source code. 683 _mesa_copy_string(sourceOut, maxLength, length, sh->Source); 688 * Set/replace shader source code. A helper function used by 692 shader_source(struct gl_context *ctx, GLuint shader, const GLchar *source) 700 /* free old shader source string and install new one */ 701 if (sh->Source) { 702 free((void *) sh->Source); 1322 GLcharARB *source; local [all...] |
| /external/nanopb-c/ |
| pb_decode.c | 82 uint8_t *source = (uint8_t*)stream->state; local 83 stream->state = source + count; 88 *buf++ = *source++; [all...] |
| /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/ |
| RealWebSocketTest.java | 32 import okio.Source; 67 client = new RealWebSocket(true, server2client.source(), client2Server.sink(), random, 80 server = new RealWebSocket(false, client2Server.source(), server2client.sink(), random, 460 BufferedSource source() { method in class:RealWebSocketTest.MemorySocket 461 return Okio.buffer(new Source() { 479 @Override public void write(Buffer source, long byteCount) throws IOException { 481 buffer.write(source, byteCount);
|
| /external/pdfium/third_party/freetype/src/base/ |
| ftdbgmem.c | 96 FT_MemSource source; member in struct:FT_MemNodeRec_ 371 FT_FILENAME( node->source->file_name ), 372 node->source->line_no ); 398 FT_MemSource source, next; local 401 for ( source = table->sources[i]; source != NULL; source = next ) 403 next = source->link; 404 ft_mem_table_free( table, source ); 516 FT_MemSource source; local 618 FT_MemSource source; local 937 FT_MemSource source = *bucket; local 951 FT_MemSource source = *bucket; local 975 FT_MemSource source = sources[nn]; local [all...] |
| /external/protobuf/java/core/src/test/java/com/google/protobuf/ |
| WireFormatTest.java | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 297 TestFieldOrderings source = local 306 TestFieldOrderings.parseFrom(source.toByteString(), 308 assertEquals(source, dest); 314 DynamicMessage source = local 323 DynamicMessage.parseFrom(descriptor, source.toByteString(), 325 assertEquals(source, dest); 598 TestOneofBackwardsCompatible source = TestOneofBackwardsCompatible local 601 ByteString rawBytes = source.toByteString() [all...] |
| /external/protobuf/src/google/protobuf/compiler/cpp/ |
| cpp_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 9 // * Redistributions of source code must retain the above copyright 543 const Message* source = implicit_cast<const Message*>(&message1); local 544 message2.CopyFrom(*source); 1800 const Message* source = implicit_cast<const Message*>(&message1); local [all...] |
| /external/protobuf/src/google/protobuf/ |
| wrappers.pb.cc | 2 // source: google/protobuf/wrappers.proto 481 const DoubleValue* source = local 484 if (source == NULL) { 489 MergeFrom(*source); 739 const FloatValue* source = local 742 if (source == NULL) { 747 MergeFrom(*source); 999 const Int64Value* source = local 1259 const UInt64Value* source = local 1519 const Int32Value* source = local 1779 const UInt32Value* source = local 2037 const BoolValue* source = local 2312 const StringValue* source = local 2627 const BytesValue* source = local [all...] |
| /external/skia/third_party/lua/src/ |
| lua.h | 404 const char *source; /* (S) */ member in struct:lua_Debug
|
| /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/ |
| HtmlActivityTask.java | 2 * Copyright (C) 2017 The Android Open Source Project 123 String source = null; local 125 source = FileUtils.readToString(new File(Uri.parse(url).getPath())); 129 source = 131 + "<script>" + mAPIWrapperSource + "</script>" + source; 132 mView.loadDataWithBaseURL(BASE_URL, source, "text/html", "utf-8", null); 168 String source = null; local 170 source = FileUtils.readToString(new File(Uri.parse(mUrl).getPath())); 174 mView.loadDataWithBaseURL(BASE_URL, source, "text/html", "utf-8", null);
|
| /external/swiftshader/src/OpenGL/common/ |
| Image.cpp | 66 void LoadImageRow(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width) 72 void LoadImageRow<Bytes_1>(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width) 74 memcpy(dest + xoffset, source, width); 78 void LoadImageRow<Bytes_2>(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width) 80 memcpy(dest + xoffset * 2, source, width * 2); 84 void LoadImageRow<Bytes_4>(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width) 86 memcpy(dest + xoffset * 4, source, width * 4); 90 void LoadImageRow<Bytes_8>(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width) 92 memcpy(dest + xoffset * 8, source, width * 8); 96 void LoadImageRow<Bytes_16>(const unsigned char *source, unsigned char *dest, GLint xoffset, GLsizei width 412 const unsigned char *source = inputStart + y * inputPitch; local [all...] |
| /external/tcpdump/ |
| print-pgm.c | 2 * Redistribution and use in source and binary forms, with or without 3 * modification, are permitted provided that: (1) source code 98 PGM_SPM = 0, /* source path message */ 362 const void *source, *group; local 374 * Skip past the source, saving info along the way 394 source = bp; 424 inet_ntop(source_af, source, source_buf, sizeof(source_buf));
|
| /external/v8/samples/ |
| process.cc | 2 // Redistribution and use in source and binary forms, with or without 6 // * Redistributions of source code must retain the above copyright 697 Local<String> source; local 698 if (!ReadFile(isolate, file).ToLocal(&source)) { 702 JsHttpRequestProcessor processor(isolate, source);
|
| /external/v8/src/compiler/ |
| code-generator.cc | 2 // Use of this source code is governed by a BSD-style license that can be 311 bool CodeGenerator::IsValidPush(InstructionOperand source, 313 if (source.IsImmediate() && 317 if ((source.IsRegister() || source.IsStackSlot()) && 321 if ((source.IsFloatRegister() || source.IsFloatStackSlot()) && 325 if ((source.IsDoubleRegister() || source.IsFloatStackSlot()) && 343 InstructionOperand source = move->source() local [all...] |
| /external/v8/src/crankshaft/ |
| lithium.cc | 2 // Use of this source code is governed by a BSD-style license that can be 181 LOperand* source = move_operands_[i].source(); local 185 if (source->Equals(destination)) { 190 source->PrintTo(stream);
|
| /external/v8/src/snapshot/ |
| serializer.cc | 2 // Use of this source code is governed by a BSD-style license that can be 500 // The exception are native source code strings, since we can recreate 694 Object* source = source_cache->get(i); local 695 if (!source->IsUndefined(isolate)) { 696 ExternalOneByteString* string = ExternalOneByteString::cast(source);
|
| /external/valgrind/coregrind/m_debuginfo/ |
| image.c | 65 /* Source for files */ 80 Source; 83 // The source -- how to get hold of the file we are reading 84 Source source; member in struct:_DiImage 481 if (img->source.is_local) { 483 SysRes sr = VG_(pread)(img->source.fd, &ce->data[0], (Int)len, off); 487 vg_assert(img->source.session_id > 0); 489 = mk_Frame_le64_le64_le64("READ", img->source.session_id, off, len); 490 Frame* res = do_transaction(img->source.fd, req) [all...] |
| /external/webrtc/webrtc/modules/audio_device/ios/ |
| audio_device_unittest_ios.cc | 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 8 * be found in the AUTHORS file in the root of the source tree. 96 virtual void Write(const void* source, size_t num_frames) = 0; 127 void Write(const void* source, size_t num_frames) override {} 174 // Allocate new memory, copy |num_frames| samples from |source| into memory 177 void Write(const void* source, size_t num_frames) override { 184 memcpy(static_cast<int16_t*>(&memory[0]), source, bytes_per_buffer_); variable 245 // See http://source.android.com/devices/audio/loopback.html for details. 277 // Detect received impulses in |source|, derive time between transmission an [all...] |
| /frameworks/av/media/libmediaplayerservice/nuplayer/ |
| RTSPSource.cpp | 2 * Copyright (C) 2010 The Android Open Source Project 49 : Source(notify), 173 sp<AnotherPacketSource> source = getSource(audio); local 175 if (source == NULL) { 179 return source->getFormat(); 224 sp<AnotherPacketSource> source = getSource(audio); local 226 if (source == NULL) { 231 if (!source->hasBufferAvailable(&finalResult)) { 234 // If other source already signaled EOS, this source should also return EO 272 sp<MediaSource> source = mTSParser->getSource( local 427 sp<AnotherPacketSource> source = getSource(audio); local 439 sp<AnotherPacketSource> source = getSource(audio); local 447 sp<AnotherPacketSource> source = getSource(audio); local 589 sp<AnotherPacketSource> source = getSource(true \/* audio *\/); local 663 sp<AnotherPacketSource> source = info->mSource; local 704 sp<AnotherPacketSource> source = info->mSource; local 719 sp<AnotherPacketSource> source = info->mSource; local 791 sp<AnotherPacketSource> source = new AnotherPacketSource(format); local [all...] |
| /frameworks/av/media/libstagefright/ |
| CameraSource.cpp | 2 * Copyright (C) 2009 The Android Open Source Project 50 explicit CameraSourceListener(const sp<CameraSource> &source); 75 CameraSourceListener::CameraSourceListener(const sp<CameraSource> &source) 76 : mSource(source) { 94 sp<CameraSource> source = mSource.promote(); local 95 if (source.get() != NULL) { 96 source->dataCallback(msgType, dataPtr); 103 sp<CameraSource> source = mSource.promote(); local 104 if (source.get() != NULL) { 105 source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr) 111 sp<CameraSource> source = mSource.promote(); local 120 sp<CameraSource> source = mSource.promote(); local 195 CameraSource *source = new CameraSource(camera, proxy, cameraId, local [all...] |
| MPEG2TSWriter.cpp | 2 * Copyright (C) 2010 The Android Open Source Project 38 explicit SourceInfo(const sp<IMediaSource> &source); 94 MPEG2TSWriter::SourceInfo::SourceInfo(const sp<IMediaSource> &source) 95 : mSource(source), 100 mLooper->setName("MPEG2TSWriter source"); 502 status_t MPEG2TSWriter::addSource(const sp<IMediaSource> &source) { 505 sp<MetaData> meta = source->getFormat(); 514 sp<SourceInfo> info = new SourceInfo(source); 533 notify->setInt32("source-index", i); 572 CHECK(msg->findInt32("source-index", &sourceIndex)) 573 sp<SourceInfo> source = mSources.editItemAt(sourceIndex); local 623 const sp<SourceInfo> &source = mSources.editItemAt(i); local [all...] |
| StagefrightMetadataRetriever.cpp | 2 * Copyright (C) 2009 The Android Open Source Project 78 ALOGE("Unable to create data source for '%s'.", uri); 124 const sp<DataSource>& source) { 128 mSource = source; 143 const sp<IMediaSource> &source, 147 sp<MetaData> format = source->getFormat(); 217 err = source->start(); 219 ALOGW("source failed to start: %d (%s)", err, asString(err)); 229 source->stop(); 238 source->stop() 516 sp<IMediaSource> source = mExtractor->getTrack(i); local [all...] |
| /frameworks/av/media/libstagefright/codecs/avcenc/ |
| SoftAVCEnc.cpp | 2 * Copyright 2015 The Android Open Source Project 1171 const uint8_t *source; local [all...] |
| /frameworks/av/media/libstagefright/omx/tests/ |
| OMXHarness.cpp | 2 * Copyright (C) 2009 The Android Open Source Project 292 sp<DataSource> source = local 295 if (source == NULL) { 299 return MediaExtractor::Create(source); 612 sp<IMediaSource> source = CreateSourceForMime(mime); local 614 if (source == NULL) { 623 if (source == NULL || seekSource == NULL) { 630 source, 0 /* flags */, NULL /* nativeWindow */, componentName); 637 CHECK(source->getFormat()->findInt64(kKeyDuration, &durationUs));
|
| /frameworks/av/media/libstagefright/rtsp/ |
| MyTransmitter.h | 2 * Copyright (C) 2010 The Android Open Source Project 111 sp<MediaSource> source = new VideoSource(width, height); local 125 mEncoder = MediaCodecSource::Create(encLooper, encMeta, source); 499 CHECK(GetAttribute(transport.c_str(), "source", &value));
|