HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 201 - 225 of 2651) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_describe.c 70 char res[128]; local
71 debug_describe_resource(res, ptr->texture);
72 util_sprintf(buf, "pipe_surface<%s,%u,%u,%u>", res, ptr->u.tex.level, ptr->u.tex.first_layer, ptr->u.tex.last_layer);
78 char res[128]; local
79 debug_describe_resource(res, ptr->texture);
80 util_sprintf(buf, "pipe_sampler_view<%s,%s>", res, util_format_short_name(ptr->format));
87 char res[128]; local
88 debug_describe_resource(res, ptr->buffer);
89 util_sprintf(buf, "pipe_stream_output_target<%s,%u,%u>", res,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.c 55 struct nouveau_heap **res)
59 if (!heap || !size || !res || *res)
81 *res = r;
92 nouveau_heap_free(struct nouveau_heap **res)
96 if (!res || !*res)
98 r = *res;
99 *res = NULL;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ReplyPacket.java 87 byte res[] = super.toBytesArray();
88 super.writeAtByteArray(error_code, res, ERROR_CODE_INDEX,
90 return res;
CommandPacket.java 122 byte res[] = super.toBytesArray();
123 res[COMMAND_SET_INDEX] = command_set;
124 res[COMMAND_INDEX] = command;
125 return res;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestOutputStream.java 36 byte[] res = new byte[digest.getDigestSize()];
38 digest.doFinal(res, 0);
40 return res;
MacOutputStream.java 36 byte[] res = new byte[mac.getMacSize()];
38 mac.doFinal(res, 0);
40 return res;
  /external/chromium_org/base/strings/
sys_string_conversions_posix.cc 55 size_t res = src ? wcrtomb(buf, src, &ps) : 0; local
56 switch (res) {
66 num_out_chars += res;
83 size_t res = src ? wcrtomb(&out[j], src, &ps) : 0; local
84 switch (res) {
94 j += res;
111 size_t res = mbrtowc(NULL, src, native_mb.size() - i, &ps); local
112 switch (res) {
122 i += res;
140 size_t res = mbrtowc(dst, src, native_mb.size() - i, &ps) local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_gather.c 86 LLVMValueRef res; local
92 res = LLVMBuildLoad(gallivm->builder, ptr, "");
96 res = LLVMBuildTrunc(gallivm->builder, res, dst_elem_type, "");
98 res = LLVMBuildZExt(gallivm->builder, res, dst_elem_type, "");
100 return res;
123 LLVMValueRef res; local
137 res = LLVMGetUndef(dst_vec_type);
144 res = LLVMBuildInsertElement(gallivm->builder, res, elem, index, "")
    [all...]
lp_bld_struct.c 70 LLVMValueRef res; local
74 res = LLVMBuildLoad(gallivm->builder, member_ptr, "");
75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name);
76 return res;
106 LLVMValueRef res; local
110 res = LLVMBuildLoad(gallivm->builder, element_ptr, "");
112 lp_build_name(res, "%s[%s]", LLVMGetValueName(ptr), LLVMGetValueName(index));
114 return res;
138 LLVMValueRef res; local
141 res = LLVMBuildLoad(builder, element_ptr, "")
156 LLVMValueRef res; local
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkPixelXorXfermode.cpp 19 SkPMColor res = src ^ dst ^ fOpColor; local
20 res |= (SK_A32_MASK << SK_A32_SHIFT); // force it to be opaque
21 return res;
  /external/chromium_org/third_party/webrtc/modules/video_coding/utility/
quality_scaler.cc 59 Resolution res; local
60 res.width = frame.width();
61 res.height = frame.height();
65 shift > 0 && res.width > 1 && res.height > 1;
67 res.width >>= 1;
68 res.height >>= 1;
71 return res;
76 Resolution res = GetScaledResolution(frame); local
77 if (res.width == frame.width()
    [all...]
  /external/chromium_org/v8/src/mips/
cpu-mips.cc 40 int res; local
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
43 if (res) {
  /external/chromium_org/v8/src/mips64/
cpu-mips64.cc 40 int res; local
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
43 if (res) {
  /external/compiler-rt/test/lsan/TestCases/
fork_threaded.cc 21 int res; local
22 res = pthread_create(&tid, 0, exit_thread_func, 0);
23 assert(res == 0);
  /external/compiler-rt/test/tsan/
static_init5.cc 21 void *res; local
22 pthread_join(t, &res);
23 return (Cache*)res;
static_init6.cc 21 void *res; local
22 pthread_join(t, &res);
23 return (Cache*)res;
  /external/elfutils/0.153/libdw/
dwarf_decl_line.c 76 int res = INTUSE(dwarf_formsdata) (INTUSE(dwarf_attr_integrate) local
79 if (res == 0)
85 return res;
  /external/lzma/C/Util/Lzma/
LzmaUtil.c 72 SRes res; local
83 res = LzmaDec_DecodeToBuf(state, outBuf + outPos, &outProcessed,
95 if (res != SZ_OK || thereIsSize && unpackSize == 0)
96 return res;
102 return res;
112 SRes res = 0; local
129 res = Decode2(&state, outStream, inStream, unpackSize);
131 return res;
137 SRes res; local
147 res = LzmaEnc_SetProps(enc, &props);
175 int res; local
251 int res = main2(numArgs, args, rs); local
    [all...]
  /external/lzma/CPP/Common/
MyString.cpp 24 wchar_t *res = CharUpperW((LPWSTR)(UINT_PTR)(unsigned int)c); local
25 if (res != 0 || ::GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
26 return (wchar_t)(unsigned int)(UINT_PTR)res;
42 wchar_t *res = CharLowerW((LPWSTR)(UINT_PTR)(unsigned int)c); local
43 if (res != 0 || ::GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
44 return (wchar_t)(unsigned int)(UINT_PTR)res;
60 wchar_t *res = CharUpperW(s); local
61 if (res != 0 || ::GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
62 return res;
72 wchar_t *res = CharLowerW(s); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_gather.c 86 LLVMValueRef res; local
92 res = LLVMBuildLoad(gallivm->builder, ptr, "");
96 res = LLVMBuildTrunc(gallivm->builder, res, dst_elem_type, "");
98 res = LLVMBuildZExt(gallivm->builder, res, dst_elem_type, "");
100 return res;
123 LLVMValueRef res; local
137 res = LLVMGetUndef(dst_vec_type);
144 res = LLVMBuildInsertElement(gallivm->builder, res, elem, index, "")
    [all...]
lp_bld_struct.c 70 LLVMValueRef res; local
74 res = LLVMBuildLoad(gallivm->builder, member_ptr, "");
75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name);
76 return res;
106 LLVMValueRef res; local
110 res = LLVMBuildLoad(gallivm->builder, element_ptr, "");
112 lp_build_name(res, "%s[%s]", LLVMGetValueName(ptr), LLVMGetValueName(index));
114 return res;
138 LLVMValueRef res; local
141 res = LLVMBuildLoad(builder, element_ptr, "")
156 LLVMValueRef res; local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Embed.c 58 wchar_t *res; local
75 res = (wchar_t *)malloc((argsize+1)*sizeof(wchar_t));
76 if (!res)
78 count = mbstowcs(res, arg, argsize+1);
83 for (tmp = res; *tmp != 0 &&
87 return res;
89 free(res);
98 res = malloc(argsize*sizeof(wchar_t));
99 if (!res) goto oom;
101 out = res;
168 int i, res; local
    [all...]
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 55 int res = REAL(pthread_mutex_lock)(m); local
57 return res;
62 int res = REAL(pthread_mutex_trylock)(m); local
63 if (res == 0)
65 return res;
76 int res = REAL(pthread_spin_destroy)(m); local
78 return res;
84 int res = REAL(pthread_spin_lock)(m); local
86 return res;
91 int res = REAL(pthread_spin_trylock)(m) local
112 int res = REAL(pthread_rwlock_rdlock)(m); local
119 int res = REAL(pthread_rwlock_tryrdlock)(m); local
128 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime); local
137 int res = REAL(pthread_rwlock_wrlock)(m); local
144 int res = REAL(pthread_rwlock_trywrlock)(m); local
153 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime); local
191 int res = REAL(pthread_cond_wait)(cond, m); local
202 int res = REAL(pthread_cond_timedwait)(cond, m, abstime); local
222 int res = REAL(pthread_cond_destroy)(cond); local
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 95 const status_t res = startWorkerThread(one_burst); local
96 ALOGE_IF(res != NO_ERROR, "%s: startWorkerThread failed", __FUNCTION__);
97 return res;
109 const status_t res = stopWorkerThread(); local
110 ALOGE_IF(res != NO_ERROR, "%s: startWorkerThread failed", __FUNCTION__);
111 return res;
256 const status_t res = getWorkerThread()->startThread(one_burst); local
257 ALOGE_IF(res != NO_ERROR, "%s: Unable to start worker thread", __FUNCTION__);
258 return res;
270 const status_t res = getWorkerThread()->stopThread() local
310 status_t res = EINVAL; local
364 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp)); local
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 23 int16x8_t res; local
26 res = vuzpq_s16(vreinterpretq_s16_s32(low), vreinterpretq_s16_s32(high)).val[1];
29 res = vmaxq_s16(res, vdupq_n_s16(0));
30 res = vminq_s16(res, vdupq_n_s16(max));
32 return res;
37 int32x4_t res; local
40 res = vshrq_n_s32(f, 16);
43 res = vmaxq_s32(res, vdupq_n_s32(0))
65 uint16x8_t res; local
83 uint16x4_t res; local
100 uint16x4_t res; local
    [all...]

Completed in 1000 milliseconds

1 2 3 4 5 6 7 891011>>