Searched defs:group (Results 1 - 25 of 619) sorted by relevance

1234567891011>>

/external/libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
H A Dgrouping.pass.cpp56 const char* const group = "\3"; local
58 const char* const group = "\x7f"; local
63 assert(np.grouping() == group);
68 assert(np.grouping() == group);
/external/ltp/testcases/kernel/syscalls/waitpid/
H A Dwaitpid11.c35 pid_t pid, group; local
38 group = SAFE_GETPGID(0);
56 /* Make sure can pickup children in a diff. process group */
57 if (TST_TRACE(reap_children(-group, 0, fork_kid_pid, MAXKIDS / 2)))
H A Dwaitpid12.c37 pid_t pid, group; local
41 group = SAFE_GETPGID(0);
57 if (TST_TRACE(waitpid_ret_test(-group, &status, WNOHANG, 0, 0)))
66 if (TST_TRACE(reap_children(-group, WNOHANG, fork_kid_pid,
H A Dwaitpid13.c36 pid_t pid, group; local
40 group = SAFE_GETPGID(0);
56 if (TST_TRACE(waitpid_ret_test(-group, &status, WNOHANG | WUNTRACED,
66 if (TST_TRACE(reap_children(-group, WUNTRACED, fork_kid_pid,
/external/webrtc/talk/media/webrtc/
H A Dsimulcast_unittest.cc40 void ExpectParsingFails(const std::string& group) { argument
42 EXPECT_FALSE(FromFieldTrialGroup(group, &config));
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingModelTests.cpp37 void createChildren (tcu::TestCaseGroup* group) argument
39 tcu::TestContext& testCtx = group->getTestContext();
41 group->addChild(createShaderAccessTests(testCtx));
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawTests.cpp44 void createChildren (tcu::TestCaseGroup* group) argument
46 tcu::TestContext& testCtx = group->getTestContext();
48 group->addChild(new SimpleDrawTests (testCtx));
49 group->addChild(new DrawIndexedTests (testCtx));
50 group->addChild(new IndirectDrawTests (testCtx));
51 group->addChild(createBasicDrawTests (testCtx));
52 group->addChild(new InstancedTests (testCtx));
53 group->addChild(new ShaderDrawParametersTests (testCtx));
54 group->addChild(createNegativeViewportHeightTests (testCtx));
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateTests.cpp42 void createChildren (tcu::TestCaseGroup* group) argument
44 tcu::TestContext& testCtx = group->getTestContext();
46 group->addChild(new DynamicStateVPTests(testCtx));
47 group->addChild(new DynamicStateRSTests(testCtx));
48 group->addChild(new DynamicStateCBTests(testCtx));
49 group->addChild(new DynamicStateDSTests(testCtx));
50 group->addChild(new DynamicStateGeneralTests(testCtx));
/external/ltp/testcases/kernel/syscalls/fchownat/
H A Dfchownat.h30 gid_t group, int flags)
32 return ltp_syscall(__NR_fchownat, dirfd, filename, owner, group, flags);
29 fchownat(int dirfd, const char *filename, uid_t owner, gid_t group, int flags) argument
/external/testng/src/test/java/test/dependent/
H A DGroupByInstancesTest.java24 private void runTest(boolean group) { argument
27 tng.setGroupByInstances(group);
32 if (group) {
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationTests.cpp47 void createBasicTests (tcu::TestCaseGroup* group) argument
49 group->addChild(createBasicFenceTests (group->getTestContext()));
50 group->addChild(createBasicSemaphoreTests(group->getTestContext()));
51 group->addChild(createBasicEventTests (group->getTestContext()));
74 void createChildren (tcu::TestCaseGroup* group) argument
76 tcu::TestContext& testCtx = group->getTestContext();
78 group
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBuiltinPrecisionTests.cpp41 TestCaseGroup* group = new TestCaseGroup( local
53 *group);
54 return group;
/external/deqp/modules/gles31/functional/
H A Des31fBuiltinPrecisionTests.cpp41 TestCaseGroup* group = new TestCaseGroup( local
53 *group);
64 *group);
65 return group;
/external/e2fsprogs/include/mingw/
H A Dgrp.h6 __inline struct group * getgrnam(char* g){return 0;}
8 struct group struct
/external/e2fsprogs/include/nonunix/
H A Dgrp.h6 __inline struct group * getgrnam(char* g){return 0;}
8 struct group struct
/external/e2fsprogs/lib/ext2fs/
H A Dalloc_sb.c2 * alloc_sb.c --- Allocate the superblock and block group descriptors for a
32 * This function reserves the superblock and block group descriptors
33 * for a given block group. It currently returns the number of free
35 * the group. This is not necessarily the case when the flex_bg
40 * super block and group descriptors instead.
45 dgrp_t group,
52 ext2fs_super_and_bgd_loc2(fs, group, &super_blk,
61 if (super_blk || (group == 0))
63 if ((group == 0) && (fs->blocksize == 1024) &&
77 num_blocks = ext2fs_group_blocks_count(fs, group);
44 ext2fs_reserve_super_and_bgd(ext2_filsys fs, dgrp_t group, ext2fs_block_bitmap bmap) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java35 public static String encodeHex(byte[] data, int group) { argument
37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)];
40 if ((group > 0) && ((i % group) == 0) && j > 0) {
/external/skia/src/pdf/
H A DSkPDFFormXObject.cpp31 auto group = sk_make_sp<SkPDFDict>("Group"); local
32 group->insertName("S", "Transparency");
34 group->insertName("CS", colorSpace);
36 group->insertBool("I", true); // Isolated.
37 form->dict()->insertObject("Group", std::move(group));
/external/skqp/src/pdf/
H A DSkPDFFormXObject.cpp31 auto group = sk_make_sp<SkPDFDict>("Group"); local
32 group->insertName("S", "Transparency");
34 group->insertName("CS", colorSpace);
36 group->insertBool("I", true); // Isolated.
37 form->dict()->insertObject("Group", std::move(group));
/external/testng/src/test/java/test/commandline/
H A DCommandLineOverridesXml.java31 private void runTest(String group, String excludedGroups, List<String> methods) { argument
35 if (group != null) tng.setGroups(group);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb90 "'group'", "'::'", "';'", "'::='", "'('", "')'", "','",
119 group = namespace.const_get( name )
120 unless group.is_a?( ANTLR3::Template::Group )
124 group = ANTLR3::Template::Group.new
125 namespace.const_set( name, group )
127 return( group )
160 def group( namespace = ::Object ) method in class:ANTLR3.Template.GroupFile.Parser
170 # 79:1: group_spec[ namespace ] returns [ group ] : ( group_name[ $namespace ] | ) ( member[ $group ] )* ;
175 group
[all...]
/external/autotest/client/bin/
H A Dtemperature.py9 group = argparser.add_mutually_exclusive_group() variable
10 group.add_argument("-m", "--maximum",
16 group.add_argument("-c", "--critical",
/external/boringssl/src/crypto/ecdh/
H A Decdh.c100 const EC_GROUP *const group = EC_KEY_get0_group(priv_key); local
101 EC_POINT *tmp = EC_POINT_new(group);
107 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv, ctx)) {
118 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, NULL, ctx)) {
123 buflen = (EC_GROUP_get_degree(group) + 7) / 8;
/external/brotli/csharp/org/brotli/dec/
H A DHuffmanTreeGroup.cs11 /// <summary>The maximal alphabet size in this group.</summary>
24 /// <summary>Initializes the Huffman tree group.</summary>
25 /// <param name="group">POJO to be initialised</param>
26 /// <param name="alphabetSize">the maximal alphabet size in this group</param>
28 internal static void Init(Org.Brotli.Dec.HuffmanTreeGroup group, int alphabetSize, int n) argument
30 group.alphabetSize = alphabetSize;
31 group.codes = new int[n * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize];
32 group.trees = new int[n];
36 /// <param name="group">target POJO</param>
38 internal static void Decode(Org.Brotli.Dec.HuffmanTreeGroup group, Or argument
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLECKeyPairGenerator.java54 private OpenSSLECGroupContext group; field in class:OpenSSLECKeyPairGenerator
62 if (group == null) {
64 group = OpenSSLECGroupContext.getCurveByName(curveName);
65 if (group == null) {
71 NativeCrypto.EC_KEY_generate_key(group.getNativeRef()));
72 return new KeyPair(new OpenSSLECPublicKey(group, key), new OpenSSLECPrivateKey(group, key));
83 * Store the group in a temporary variable until we know this is a valid
84 * group.
91 group
[all...]

Completed in 1422 milliseconds

1234567891011>>