/external/eigen/lapack/ |
cholesky.cpp | 14 EIGEN_LAPACK_FUNC(potrf,(char* uplo, int *n, RealScalar *pa, int *lda, int *info)) 16 *info = 0; 17 if(UPLO(*uplo)==INVALID) *info = -1; 18 else if(*n<0) *info = -2; 19 else if(*lda<std::max(1,*n)) *info = -4; 20 if(*info!=0) 22 int e = -*info; 33 *info = ret+1; 41 EIGEN_LAPACK_FUNC(potrs,(char* uplo, int *n, int *nrhs, RealScalar *pa, int *lda, RealScalar *pb, int *ldb, int *info)) 43 *info = 0 [all...] |
/cts/tests/tests/accessibility/src/android/view/accessibility/cts/ |
AccessibilityNodeInfoTest.java | 41 // fully populate the node info to marshal 45 // marshal and unmarshal the node info 71 // obtain and populate an node info 88 AccessibilityNodeInfo info = AccessibilityNodeInfo.obtain(); local 90 info.describeContents()); 91 fullyPopulateAccessibilityNodeInfo(info); 93 info.describeContents()); 99 * @param info The node info to populate. 101 private void fullyPopulateAccessibilityNodeInfo(AccessibilityNodeInfo info) { [all...] |
/frameworks/base/graphics/java/android/graphics/ |
PixelFormat.java | 84 public static void getPixelFormatInfo(int format, PixelFormat info) { 88 info.bitsPerPixel = 32; 89 info.bytesPerPixel = 4; 92 info.bitsPerPixel = 24; 93 info.bytesPerPixel = 3; 99 info.bitsPerPixel = 16; 100 info.bytesPerPixel = 2; 105 info.bitsPerPixel = 8; 106 info.bytesPerPixel = 1; 110 info.bitsPerPixel = 16 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
fs-frontface.c | 12 static struct graw_info info; variable in typeref:struct:graw_info 86 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 87 info.ctx->bind_vertex_elements_state(info.ctx, handle); 92 vbuf.buffer = pipe_buffer_create_with_data(info.ctx, 98 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf); 116 handle = graw_parse_vertex_shader(info.ctx, text); 117 info.ctx->bind_vs_state(info.ctx, handle) [all...] |
/external/mesa3d/src/gallium/tests/graw/ |
fs-frontface.c | 12 static struct graw_info info; variable in typeref:struct:graw_info 86 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 87 info.ctx->bind_vertex_elements_state(info.ctx, handle); 92 vbuf.buffer = pipe_buffer_create_with_data(info.ctx, 98 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf); 116 handle = graw_parse_vertex_shader(info.ctx, text); 117 info.ctx->bind_vs_state(info.ctx, handle) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttributeInfoTest.java | 55 AttributeInfo info = new AttributeInfo("test", EnumSet.noneOf(Format.class)); local 56 assertTrue(info.isValid("", null, null)); 57 assertTrue(info.isValid("a b c", null, null)); 58 assertTrue(info.isValid("@android foo bar", null, null)); 62 AttributeInfo info = new AttributeInfo("test", Format.STRING_SET); local 63 assertTrue(info.isValid("", null, null)); 64 assertTrue(info.isValid("a b c", null, null)); 65 assertTrue(info.isValid("@android foo bar", null, null)); 69 AttributeInfo info = new AttributeInfo("test", Format.BOOLEAN_SET); local 70 assertTrue(info.isValid("true", null, null)) 80 AttributeInfo info = new AttributeInfo("test", Format.INTEGER_SET); local 95 AttributeInfo info = new AttributeInfo("test", Format.FLOAT_SET); local 115 AttributeInfo info = new AttributeInfo("test", Format.DIMENSION_SET); local 133 AttributeInfo info = new AttributeInfo("test", Format.COLOR_SET); local 146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION)); local 158 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local 174 AttributeInfo info = new AttributeInfo("test", Format.ENUM_SET); local 184 AttributeInfo info = new AttributeInfo("test", Format.FLAG_SET); local 196 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.INTEGER, local 204 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.COLOR, local 212 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.STRING, local 219 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.ENUM, local 233 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local 351 AttributeInfo info = map.get(name); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_setup_point.c | 61 struct point_info *info, 66 info->a0[slot][i] = value; 67 info->dadx[slot][i] = 0.0f; 68 info->dady[slot][i] = 0.0f; 74 const struct point_info *info, 85 float w0 = info->v0[0][3]; 89 info->a0[slot][i] = info->v0[slot][i]*w0; 90 info->dadx[slot][i] = 0.0f; 91 info->dady[slot][i] = 0.0f 326 struct point_info info; local [all...] |
/external/iptables/extensions/ |
libxt_iprange.c | 98 struct ipt_iprange_info *info = cb->data; local 104 info->flags |= IPRANGE_SRC; 106 info->flags |= IPRANGE_SRC_INV; 108 info->src.min_ip = range[0].ip; 109 info->src.max_ip = range[1].ip; 112 info->flags |= IPRANGE_DST; 114 info->flags |= IPRANGE_DST_INV; 116 info->dst.min_ip = range[0].ip; 117 info->dst.max_ip = range[1].ip; 124 struct xt_iprange_mtinfo *info = cb->data local 177 const struct ipt_iprange_info *info = (const void *)match->data; local 197 const struct xt_iprange_mtinfo *info = (const void *)match->data; local 223 const struct xt_iprange_mtinfo *info = (const void *)match->data; local 247 const struct ipt_iprange_info *info = (const void *)match->data; local 265 const struct xt_iprange_mtinfo *info = (const void *)match->data; local 283 const struct xt_iprange_mtinfo *info = (const void *)match->data; local [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_point.c | 61 struct point_info *info, 66 info->a0[slot][i] = value; 67 info->dadx[slot][i] = 0.0f; 68 info->dady[slot][i] = 0.0f; 74 const struct point_info *info, 85 float w0 = info->v0[0][3]; 89 info->a0[slot][i] = info->v0[slot][i]*w0; 90 info->dadx[slot][i] = 0.0f; 91 info->dady[slot][i] = 0.0f 326 struct point_info info; local [all...] |
/development/tools/idegen/src/ |
Log.java | 26 info(message); 30 static void info(String message) { method in class:Log
|
/external/clang/test/CodeGen/ |
2003-06-26-CFECrash.c | 10 min_info info[1]; member in struct:Globals 17 G.pInfo = G.info;
|
/external/eigen/blas/ |
xerbla.cpp | 15 EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int) 17 std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
|
/external/elfutils/libdw/ |
dwarf_getsrc_die.c | 73 if (addr < lines->info[idx].addr) 75 else if (addr > lines->info[idx].addr || lines->info[idx].end_sequence) 78 return &lines->info[idx]; 82 assert (lines->info[nlines - 1].end_sequence); 89 if (u > 0 && u < nlines && addr > lines->info[u - 1].addr) 91 while (lines->info[u - 1].end_sequence && u > 0) 94 return &lines->info[u - 1];
|
/external/elfutils/libdwfl/ |
dwfl_lineinfo.c | 61 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx]; local 64 *addr = info->addr + cu->mod->debug.bias; 66 *linep = info->line; 68 *colp = info->column; 70 struct Dwarf_Fileinfo_s *file = &info->files->info[info->file];
|
/external/qemu/distrib/sdl-1.2.15/src/audio/bsd/ |
SDL_bsdaudio.c | 248 audio_info_t info; local 250 if(ioctl(audio_fd, AUDIO_GETINFO, &info) < 0) { 256 "[play/record info]\n" 270 info.play.buffer_size, 271 info.play.sample_rate, 272 info.play.channels, 273 info.play.precision, 274 info.play.encoding, 275 info.play.seek, 276 info.play.samples 306 audio_info_t info; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
SDL_nxwm_c.h | 32 extern int NX_GetWMInfo (_THIS, SDL_SysWMinfo * info) ;
|
/frameworks/base/core/java/android/hardware/ |
CameraInfo.java | 30 public Camera.CameraInfo info = new Camera.CameraInfo(); field in class:CameraInfo 39 out.writeInt(info.facing); 40 out.writeInt(info.orientation); 44 info.facing = in.readInt(); 45 info.orientation = in.readInt(); 52 CameraInfo info = new CameraInfo(); 53 info.readFromParcel(in); 55 return info;
|
/frameworks/support/v4/jellybean-mr2/android/support/v4/accessibilityservice/ |
AccessibilityServiceInfoCompatJellyBeanMr2.java | 27 public static int getCapabilities(AccessibilityServiceInfo info) { 28 return info.getCapabilities();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/ |
SystraceTag.java | 21 public final String info; field in class:SystraceTag 25 info = details;
|
/external/chromium_org/chrome/browser/nacl_host/ |
pnacl_host_unittest.cc | 62 base::PlatformFileInfo info; local 63 EXPECT_TRUE(base::GetPlatformFileInfo(fd, &info)); 64 EXPECT_FALSE(info.is_directory); 65 EXPECT_EQ(0LL, info.size); 75 base::PlatformFileInfo info; local 76 EXPECT_TRUE(base::GetPlatformFileInfo(fd, &info)); 77 EXPECT_FALSE(info.is_directory); 78 EXPECT_EQ(16LL, info.size); 98 nacl::PnaclCacheInfo info; local 99 info.pexe_url = GURL("http://www.google.com") 120 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 140 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 153 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 166 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 199 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 219 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 236 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 253 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 270 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 289 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 308 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 334 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 351 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
desc_32.h | 69 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff)) 70 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)->seg_not_present ^ 1) << 15) | ((info)->seg_32bit << 22) | ((info)->limit_in_pages << 23) | (…) [all...] |
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
desc_32.h | 69 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff)) 70 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)->seg_not_present ^ 1) << 15) | ((info)->seg_32bit << 22) | ((info)->limit_in_pages << 23) | (…) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit_1.c | 31 static void Blit1to1(SDL_BlitInfo *info) 41 width = info->d_width; 42 height = info->d_height; 43 src = info->s_pixels; 44 srcskip = info->s_skip; 45 dst = info->d_pixels; 46 dstskip = info->d_skip; 47 map = info->table; 77 static void Blit1to2(SDL_BlitInfo *info) 88 width = info->d_width [all...] |
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
desc_32.h | 59 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff)) 60 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)->seg_not_present ^ 1) << 15) | ((info)->seg_32bit << 22) | ((info)->limit_in_pages << 23) | (…) [all...] |
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
desc_32.h | 59 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff)) 60 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)->seg_not_present ^ 1) << 15) | ((info)->seg_32bit << 22) | ((info)->limit_in_pages << 23) | (…) [all...] |