HomeSort by relevance Sort by last modified time
    Searched defs:tdb (Results 1 - 7 of 7) sorted by null

  /external/clang/test/CodeGen/
builtins-systemz.c 12 void test_htm1(struct __htm_tdb *tdb, int reg, int *mem, uint64_t *mem64) {
19 __builtin_tbegin (tdb);
28 __builtin_tbegin_nofloat (tdb);
39 __builtin_tbegin_retry (tdb, 6);
52 __builtin_tbegin_retry_nofloat (tdb, 6);
115 void * const tdb = &tdb_struct; local
121 result = __TM_begin (tdb);
131 result = __TM_nesting_depth (tdb);
134 result = __TM_is_user_abort (tdb);
135 result = __TM_is_named_user_abort (tdb, &code)
    [all...]
  /external/clang/lib/Headers/
htmxlintrin.h 263 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
268 if (tdb->format != 1)
270 return tdb->nesting_depth;
278 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
280 if (tdb->format != 1)
283 return !!(tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE);
289 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
291 if (tdb->format != 1)
294 if (tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE)
296 *__code = tdb->abort_code - _HTM_FIRST_USER_ABORT_CODE
305 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
315 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
325 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
333 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
349 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
356 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
    [all...]
  /external/e2fsprogs/e2fsck/
dirinfo.c 17 #include <ext2fs/tdb.h>
26 TDB_CONTEXT *tdb; member in struct:dir_info_db
76 db->tdb = NULL;
83 db->tdb = tdb_open(db->tdb_fn, num_dirs, TDB_NOLOCK | TDB_NOSYNC,
110 if (db->tdb) {
112 printf("Note: using tdb!\n");
163 if (ctx->dir_info->tdb) {
217 if (db->tdb) {
225 data = tdb_fetch(db->tdb, key);
227 if (tdb_error(db->tdb) != TDB_ERR_NOEXIST
    [all...]
  /external/e2fsprogs/lib/ext2fs/
icount.c 24 #include "tdb.h"
62 TDB_CONTEXT *tdb; member in struct:ext2_icount
89 if (icount->tdb)
90 tdb_close(icount->tdb);
240 icount->tdb = tdb_open(fn, num_inodes, TDB_NOLOCK | TDB_NOSYNC,
243 if (icount->tdb == NULL) {
439 if (icount->tdb) {
445 if (tdb_store(icount->tdb, key, data, TDB_REPLACE))
446 return tdb_error(icount->tdb) +
449 if (tdb_delete(icount->tdb, key)
    [all...]
tdbtool.c 40 #include "tdb.h"
103 /* a tdb tool for manipulating a tdb database */
105 static TDB_CONTEXT *tdb; variable
169 " move key file : move a record to a destination tdb\n"
190 if (tdb) tdb_close(tdb);
191 tdb = tdb_open(tdbname, 0, TDB_CLEAR_IF_FIRST,
193 if (!tdb) {
200 if (tdb) tdb_close(tdb)
    [all...]
tdb.c 2 URL: svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/tdb/common
13 ** NOTE! The following LGPL license applies to the tdb
109 #include "tdb.h"
124 #define TDB_MAGIC_FOOD "TDB file\n"
139 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
146 /* NB assumes there is a local variable called "tdb" that is the
149 #define TDB_LOG(x) tdb->log.log_fn x
161 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
163 #define DOCONV() (tdb->flags & TDB_CONVERT
3816 struct tdb_context *tdb; local
4120 struct tdb_context *tdb; local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiPxe.h 948 UINT32 tdb; member in struct:pxe_device::__anon7199
    [all...]

Completed in 430 milliseconds