HomeSort by relevance Sort by last modified time
    Searched defs:shared (Results 26 - 50 of 149) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.c 26 * \file shared.c
27 * Shared-context state
38 #include "shared.h"
49 * Allocate and initialize a shared context state structure.
60 struct gl_shared_state *shared; local
63 shared = CALLOC_STRUCT(gl_shared_state);
64 if (!shared)
67 _glthread_INIT_MUTEX(shared->Mutex);
69 shared->DisplayList = _mesa_NewHashTable();
70 shared->TexObjects = _mesa_NewHashTable()
    [all...]
context.c 117 #include "shared.h"
819 * Update default objects in a GL context with respect to shared state.
824 * objects, etc.) and changes to reference those from the current shared
897 * miscellaneous one-time initializations. If no shared context is supplied one
920 struct gl_shared_state *shared; local
947 shared = share_list->Shared;
951 shared = _mesa_alloc_shared_state(ctx);
952 if (!shared)
956 _mesa_reference_shared_state(ctx, &ctx->Shared, shared)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFontStream.cpp 75 if (ttcIndex > 0) { // need to read more of the shared header
141 SkSharedTTHeader shared; local
142 if (!read(stream, &shared, sizeof(shared))) {
147 uint32_t tag = SkEndian_SwapBE32(shared.fCollection.fTag);
149 return SkEndian_SwapBE32(shared.fCollection.fNumOffsets);
  /external/mesa3d/src/mesa/main/
shared.c 26 * \file shared.c
27 * Shared-context state
38 #include "shared.h"
49 * Allocate and initialize a shared context state structure.
60 struct gl_shared_state *shared; local
63 shared = CALLOC_STRUCT(gl_shared_state);
64 if (!shared)
67 _glthread_INIT_MUTEX(shared->Mutex);
69 shared->DisplayList = _mesa_NewHashTable();
70 shared->TexObjects = _mesa_NewHashTable()
    [all...]
  /external/skia/src/core/
SkFontStream.cpp 75 if (ttcIndex > 0) { // need to read more of the shared header
141 SkSharedTTHeader shared; local
142 if (!read(stream, &shared, sizeof(shared))) {
147 uint32_t tag = SkEndian_SwapBE32(shared.fCollection.fTag);
149 return SkEndian_SwapBE32(shared.fCollection.fNumOffsets);
  /ndk/toolchains/llvm-3.2/
setup-common.mk 80 define cmd-build-shared-library
83 -shared \
  /ndk/toolchains/llvm-3.3/
setup-common.mk 80 define cmd-build-shared-library
83 -shared \
  /build/core/combo/
TARGET_linux-arm.mk 135 -Wl,--warn-shared-textrel \
233 define transform-o-to-shared-lib-inner
237 -Wl,-shared,-Bsymbolic \
TARGET_linux-mips.mk 125 -Wl,--warn-shared-textrel \
224 define transform-o-to-shared-lib-inner
228 -Wl,-shared,-Bsymbolic \
TARGET_linux-x86.mk 154 TARGET_GLOBAL_LDFLAGS += -Wl,--warn-shared-textrel
178 define transform-o-to-shared-lib-inner
182 -shared -Bsymbolic \
  /external/chromium_org/third_party/leveldatabase/src/table/
block.cc 47 // storing the number of shared key bytes, non_shared key bytes,
48 // and the length of the value in "*shared", "*non_shared", and
54 uint32_t* shared,
58 *shared = reinterpret_cast<const unsigned char*>(p)[0];
61 if ((*shared | *non_shared | *value_length) < 128) {
65 if ((p = GetVarint32Ptr(p, limit, shared)) == NULL) return NULL;
173 uint32_t shared, non_shared, value_length; local
176 &shared, &non_shared, &value_length);
177 if (key_ptr == NULL || (shared != 0)) {
238 uint32_t shared, non_shared, value_length local
    [all...]
  /external/chromium_org/v8/src/
cpu-profiler.h 75 Address shared; member in class:v8::internal::CodeCreateEventRecord
219 SharedFunctionInfo* shared,
224 SharedFunctionInfo* shared,
objects-visiting-inl.h 410 SharedFunctionInfo* shared = SharedFunctionInfo::cast(object); local
411 if (shared->ic_age() != heap->global_ic_age()) {
412 shared->ResetForNewContext(heap->global_ic_age());
416 !shared->optimized_code_map()->IsSmi()) {
418 shared->ClearOptimizedCodeMap();
422 if (FLAG_cache_optimized_code && !shared->optimized_code_map()->IsSmi()) {
423 // Add the shared function info holding an optimized code map to
425 collector->code_flusher()->AddOptimizedCodeMap(shared);
428 FixedArray* code_map = FixedArray::cast(shared->optimized_code_map());
431 if (IsFlushable(heap, shared)) {
472 SharedFunctionInfo* shared = function->shared(); local
    [all...]
runtime-profiler.cc 136 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage);
162 SharedFunctionInfo* shared = function->shared(); local
164 if (!shared->code()->optimizable()) return;
169 if (shared->uses_arguments()) return;
188 Code* unoptimized_code = shared->code();
207 ? (function->shared() == JSFunction::cast(sample)->shared())
269 SharedFunctionInfo* shared = function->shared(); local
    [all...]
  /external/v8/src/
compiler.cc 92 shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
158 int opt_count = function->shared()->opt_count();
159 function->shared()->set_opt_count(opt_count + 1);
174 code_size += function->shared()->SourceSize();
197 // shared function object.
202 // shared function info.
207 // generated code for this from the shared function object.
274 Handle<SharedFunctionInfo> shared = info->shared_info();
275 shared->EnableDeoptimizationSupport(*unoptimized.code());
278 Logger::LAZY_COMPILE_TAG, &unoptimized, shared);
613 Handle<SharedFunctionInfo> shared = info->shared_info(); local
    [all...]
cpu-profiler.h 73 Address shared; member in class:v8::internal::CodeCreateEventRecord
143 Address shared);
232 SharedFunctionInfo* shared,
236 SharedFunctionInfo* shared,
runtime-profiler.cc 118 function->shared()->code()->type_feedback_info();
160 SharedFunctionInfo* shared = function->shared(); local
162 if (!shared->code()->optimizable()) return;
167 if (shared->uses_arguments()) return;
197 Code* unoptimized_code = shared->code();
268 Code* shared_code = function->shared()->code();
280 if (function->shared()->optimization_disabled()) continue;
286 if (function->shared()->is_toplevel()
288 || function->shared()->SourceSize() > kMaxToplevelSourceSize))
    [all...]
  /external/wpa_supplicant_8/src/crypto/
dh_groups.c 1249 struct wpabuf *shared; local
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_client_write.c 211 u8 *csecret, *csecret_start, *dh_yc, *shared; local
284 shared = os_malloc(shared_len);
285 if (shared == NULL) {
294 /* shared = Ys^csecret mod p */
298 shared, &shared_len)) {
302 os_free(shared);
305 wpa_hexdump_key(MSG_DEBUG, "TLSv1: Shared secret from DH key exchange",
306 shared, shared_len);
310 if (tls_derive_keys(conn, shared, shared_len)) {
314 os_free(shared);
    [all...]
tlsv1_server_read.c 590 u8 *shared; local
645 shared = os_malloc(shared_len);
646 if (shared == NULL) {
654 /* shared = Yc^secret mod p */
658 shared, &shared_len)) {
659 os_free(shared);
664 wpa_hexdump_key(MSG_DEBUG, "TLSv1: Shared secret from DH key exchange",
665 shared, shared_len);
671 res = tlsv1_server_derive_keys(conn, shared, shared_len);
674 os_memset(shared, 0, shared_len)
    [all...]
  /ndk/build/core/
default-build-commands.mk 12 # Return the list of object, static libraries and shared libraries as they
16 # we always put libgcc _after_ all static libraries and _before_ shared
19 # symbol references to the same symbols as exported by shared libraries
28 # $4: shared libraries
37 # generated machine code. This adds a special section to the generated shared
48 # executable or shared library as being read-only after the dynamic
65 # command line when generating shared libraries and executables.
72 define cmd-build-shared-library
75 -shared \
98 # The strip command is only used for shared libraries and executables
    [all...]
  /device/generic/goldfish/opengl/system/GLESv2_enc/
GL2Encoder.h 32 void setSharedGroup(GLSharedGroupPtr shared){ m_shared = shared; }
34 const GLSharedGroupPtr shared() { return m_shared; } function in class:GL2Encoder
  /external/chromium/base/
process_util.h 482 // priv (private): These pages (kbytes) cannot be shared with any other process.
483 // shareable: These pages (kbytes) can be shared with other processes under
485 // shared : These pages (kbytes) are currently shared with at least one
490 // shared: PSS or 0 if the kernel doesn't support this
495 // shared: 0
498 WorkingSetKBytes() : priv(0), shareable(0), shared(0) {}
501 size_t shared; member in struct:base::WorkingSetKBytes
505 // private: These pages cannot be shared with any other process.
572 // memory currently allocated to a process that cannot be shared. Return
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
drisw_glx.c 379 __DRIcontext *shared = NULL; local
393 shared = pcp_shared->driContext;
408 config->driConfig, shared, pcp);
430 __DRIcontext *shared = NULL; local
458 shared = pcp_shared->driContext;
489 shared,
  /external/e2fsprogs/e2fsck/
pass1b.c 432 ext2_ino_t *shared, ino; local
450 shared = (ext2_ino_t *) e2fsck_allocate_memory(ctx,
452 "Shared inode list");
481 * shared[] --- which is a unique list, so
482 * if an inode is already in shared[], don't
489 if (shared[i] == r->inode)
492 shared[shared_len++] = r->inode;
513 m = dict_lookup(&ino_dict, INT_TO_VOIDPTR(shared[i]));
521 pctx.ino = shared[i];
541 ext2fs_free_mem(&shared);
    [all...]

Completed in 1165 milliseconds

12 3 4 5 6